create account

Using Scoped NPM Packages by ghasemkiani

View this thread on: hive.blogpeakd.comecency.com
· @ghasemkiani · (edited)
$8.61
Using Scoped NPM Packages
[NPM](https://npmjs.com/) is the most widely used package manager for [NodeJS](https://nodejs.org/). It has more than 600,000 packages with hundreds of millions of downloads per day.

NodeJS uses directory hierarchy for finding modules. Specifically, it searches `node_modules` subdirectory in the current folder or its parent folders for the required modules.

Naming packages is important for several reasons. Firstly,  your package name must be unique. Secondly, your chosen name should be expressive for your package.

Now this leads to a lot of problems. Consider, for example, that you want to create a package named `dom` for working with the document object model. Chances are someone has already put a package with that name on `npm`. On the other hand, let's assume that you need a package for working with DOM. Can you offhandedly run `npm install dom` and expect to find what you want?

As you can see, a simple name cannot satisfactorily define a package. What we need is some sort of namespace. [Scoped packages](https://docs.npmjs.com/misc/scope) give you this functionality. Instead of `dom`, you can name your package `@yourname/dom`. This prevent name clashes and defines your `dom` package more thoroughly.

In order to create a scoped package, add `--scope yourname` to `npm init` command:

```
	npm init --scope=yourname
```

This adds a line like the following to your `package.json` file:

```
	{
		"name": "@yourname/dom"
	}
```

When requiring scoped packages, you must use the complete name:

```
	const dom = require("@yourname/dom");
```

The same applies to including the package as a dependency in `package.json`:

```
{
	"dependencies": {
		"@yourname/dom": "^1.0.0"
	}
}	
```

In npm, scoped packages are private by default (and they require paid membership in npmjs.com). If you want to publish your scoped package publicly, you should set the public access option when publishing it (only the first time):

```
	npm publish --access=public
```

When installing scoped packages, you must use the complete name:

```
	npm install "@yourname/dom"
```

After installing a scoped package, `npm` creates a subdirectory `@yourname` under `node_modules` and puts your package in that folder:

```
	node_modules
		│
		└──@yourname
			│
			└──dom
				│
				├──package.json
				└──index.js
```

Namespacing is very useful for differentiating packages. Scoped NodeJS packages are already being used in many popular JavaScript projects.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 9 others
properties (23)
authorghasemkiani
permlinkusing-scoped-npm-packages
categoryjavascript
json_metadata{"tags":["javascript","programming","technology","nodejs","npm"],"app":"steemit/0.1","format":"markdown","percent_steem_dollars":10000,"links":["https://npmjs.com/","https://nodejs.org/","https://docs.npmjs.com/misc/scope"]}
created2018-02-26 12:38:00
last_update2018-02-26 18:17:09
depth0
children62
last_payout2018-03-05 12:38:00
cashout_time1969-12-31 23:59:59
total_payout_value8.483 HBD
curator_payout_value0.125 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,457
author_reputation90,438,911,242,538
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,590,823
net_rshares1,516,016,417,570
author_curate_reward""
vote details (73)
@abdulmanan ·
$0.06
I'm not in a javaScript but have a plan to learn it in the future,
A little c # programmer here :p
the package name is one of the major parts of programming blocks,
It makes us remember what we are doing.
Thanks for sharing this amazing knowledge with us brother.
Yeah, we can say namespace is the backbone of nodejs packages.
👍  
properties (23)
authorabdulmanan
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t124445682z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:44:48
last_update2018-02-26 12:44:48
depth1
children0
last_payout2018-03-05 12:44:48
cashout_time1969-12-31 23:59:59
total_payout_value0.057 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length326
author_reputation46,617,086,183,537
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,592,254
net_rshares10,215,426,515
author_curate_reward""
vote details (1)
@agyapong ·
@ghasemkian u are a genius
properties (22)
authoragyapong
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t192938053z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkian"],"app":"steemit/0.1"}
created2018-02-26 19:29:45
last_update2018-02-26 19:29:45
depth1
children0
last_payout2018-03-05 19:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation195,900,825,839
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,675,058
net_rshares0
@albanna ·
a very satisfying post
properties (22)
authoralbanna
permlinkre-ghasemkiani-201838t1311618z
categoryjavascript
json_metadata{"tags":["javascript","programming","technology","nodejs","npm"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-03-07 18:31:21
last_update2018-03-07 18:31:21
depth1
children0
last_payout2018-03-14 18:31:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation53,064,863,001,187
root_title"Using Scoped NPM Packages"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,931,309
net_rshares0
@albob ·
$0.04
Hi my brother
Teach me to use better esteem and useful
In order to get more votes like you.
Thank you
👍  
properties (23)
authoralbob
permlinkre-ghasemkiani-201834t39364z
categoryjavascript
json_metadata{"tags":["javascript","programming","technology","nodejs","npm"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-03-03 20:09:39
last_update2018-03-03 20:09:39
depth1
children0
last_payout2018-03-10 20:09:39
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation114,400,252,294
root_title"Using Scoped NPM Packages"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,950,976
net_rshares10,212,778,986
author_curate_reward""
vote details (1)
@aliakbar2 ·
Nice post.
properties (22)
authoraliakbar2
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t131544242z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:18:09
last_update2018-02-26 13:18:09
depth1
children0
last_payout2018-03-05 13:18:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation260,485,138,969,195
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,599,313
net_rshares0
@andrekweku ·
$0.05
Hi @ghasemkiani. I'm currently on a project of creating a local exchange of steem to my local currency(Ghana Cedis) but i have no idea of how to call a user's steemit info when he/she logs in into that site with their steemit account. Thought you could be the best person to help.
👍  ,
properties (23)
authorandrekweku
permlinkre-ghasemkiani-using-scoped-npm-packages-20180301t233224420z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-03-01 23:32:57
last_update2018-03-01 23:32:57
depth1
children3
last_payout2018-03-08 23:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation2,079,252,945,473
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,496,011
net_rshares10,521,305,330
author_curate_reward""
vote details (2)
@ghasemkiani ·
If you use JavaScript, [Steem.js](https://github.com/steemit/steem-js) is the official JavaScript library for the Steem blockchain.

If by user info you mean the profile characteristics of the user, you can use the `steem.api.getAccounts` method. The profile info is in the `json-metadata` field.
properties (22)
authorghasemkiani
permlinkre-andrekweku-re-ghasemkiani-using-scoped-npm-packages-20180302t061548582z
categoryjavascript
json_metadata{"tags":["javascript"],"links":["https://github.com/steemit/steem-js"],"app":"steemit/0.1"}
created2018-03-02 06:15:51
last_update2018-03-02 06:15:51
depth2
children2
last_payout2018-03-09 06:15:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length296
author_reputation90,438,911,242,538
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,563,048
net_rshares0
@andrekweku ·
$0.05
Thanks very much. I’ll try my hands on that.
👍  
properties (23)
authorandrekweku
permlinkre-ghasemkiani-re-andrekweku-re-ghasemkiani-using-scoped-npm-packages-20180302t094343629z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-02 09:43:45
last_update2018-03-02 09:43:45
depth3
children0
last_payout2018-03-09 09:43:45
cashout_time1969-12-31 23:59:59
total_payout_value0.045 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation2,079,252,945,473
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,596,443
net_rshares10,212,601,264
author_curate_reward""
vote details (1)
@vahid564 ·
Can you help me? @ghasemkiani
properties (22)
authorvahid564
permlinkre-ghasemkiani-re-andrekweku-re-ghasemkiani-using-scoped-npm-packages-20180302t064759904z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-03-02 06:48:06
last_update2018-03-02 06:48:06
depth3
children0
last_payout2018-03-09 06:48:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation-132,990,784,386
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,567,647
net_rshares0
@angela.ghkh ·
$0.14
@yourname/dom ... yep! thanks for the info ! useful
👍  ,
properties (23)
authorangela.ghkh
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t175703242z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["yourname"],"app":"steemit/0.1"}
created2018-02-26 17:55:30
last_update2018-02-26 17:55:30
depth1
children0
last_payout2018-03-05 17:55:30
cashout_time1969-12-31 23:59:59
total_payout_value0.136 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation2,888,077,605,665
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,656,642
net_rshares25,841,726,576
author_curate_reward""
vote details (2)
@blazing ·
this is really cool work your shared and all those codes helped me to learn more about it thanks for sharing
properties (22)
authorblazing
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t130937227z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:09:42
last_update2018-02-26 13:09:42
depth1
children0
last_payout2018-03-05 13:09:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation117,662,220,860,076
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,597,573
net_rshares0
@charliechain ·
Very good information about npm .
I had no knowledge about and you did analysis about it . Thank you so much.
👍  
properties (23)
authorcharliechain
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t125057165z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:51:06
last_update2018-02-26 12:51:06
depth1
children0
last_payout2018-03-05 12:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation5,425,403,461,319
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,593,560
net_rshares603,797,410
author_curate_reward""
vote details (1)
@cosmicboy123 ·
$0.04
Thanks for sharing this! I installed NodeJS on FreeBSD 2 years ago for a developer but i wasn´t fully aware of its structure and capabilities! Am following you, you have my upvote and resteem for this post of yours! Greetings from Mérida, Yucatán, México the Maya Land
👍  
properties (23)
authorcosmicboy123
permlinkre-ghasemkiani-using-scoped-npm-packages-20180302t183544876z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-02 18:35:45
last_update2018-03-02 18:35:45
depth1
children0
last_payout2018-03-09 18:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation1,971,099,682,805
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,695,702
net_rshares10,212,620,467
author_curate_reward""
vote details (1)
@divaa ·
$0.05
Good post, can you please share post on selenium?
👍  
properties (23)
authordivaa
permlinkre-ghasemkiani-using-scoped-npm-packages-20180228t031019888z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-28 03:10:21
last_update2018-02-28 03:10:21
depth1
children0
last_payout2018-03-07 03:10:21
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation86,580,419,797
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,016,274
net_rshares10,211,808,547
author_curate_reward""
vote details (1)
@eljose27 ·
$0.03
Buena publicacion
👍  
properties (23)
authoreljose27
permlinkre-ghasemkiani-using-scoped-npm-packages-20180314t003917728z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-14 00:37:24
last_update2018-03-14 00:37:24
depth1
children0
last_payout2018-03-21 00:37:24
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation502,217,014,886
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,251,029
net_rshares10,216,973,367
author_curate_reward""
vote details (1)
@five34a4b · (edited)
using-scoped-npm-packages-comment
well done ghasemkiani!
properties (22)
authorfive34a4b
permlinkusing-scoped-npm-packages-comment
categoryjavascript
json_metadata{}
created2018-02-26 19:58:42
last_update2018-03-04 19:58:03
depth1
children0
last_payout2018-03-05 19:58:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation1,119,681,610,239
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,680,969
net_rshares0
@gym.lover ·
$0.05
good post mashti:) fallow kon please 
support me i will supportet mikonam
👍  
properties (23)
authorgym.lover
permlinkre-ghasemkiani-using-scoped-npm-packages-20180227t132357211z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-27 13:23:57
last_update2018-02-27 13:23:57
depth1
children0
last_payout2018-03-06 13:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation68,173,780,176
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,868,431
net_rshares10,211,797,514
author_curate_reward""
vote details (1)
@gym.lover ·
fallow and support me mashti :)
i will fallow and support you very soon
i need your helping 
thank you
properties (22)
authorgym.lover
permlinkre-ghasemkiani-using-scoped-npm-packages-20180228t144339934z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-28 14:43:42
last_update2018-02-28 14:43:42
depth1
children1
last_payout2018-03-07 14:43:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation68,173,780,176
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,141,849
net_rshares0
@spaminator ·
$0.50
Leaving comments asking for votes, follows, or other self promotional messages could be seen as spam.


[Your Reputation Could be a Tasty Snack with the Wrong Comment!](https://steemit.com/steemit-abuse/@spaminator/updated-your-reputation-could-be-a-tasty-snack-with-the-wrong-comment)

Thank You! ⚜
👍  
properties (23)
authorspaminator
permlinkre-gymlover-re-ghasemkiani-using-scoped-npm-packages-20180228t201454552z
categoryjavascript
json_metadata{"tags":["javascript"],"links":["https://steemit.com/steemit-abuse/@spaminator/updated-your-reputation-could-be-a-tasty-snack-with-the-wrong-comment"],"app":"steemit/0.1"}
created2018-02-28 20:14:54
last_update2018-02-28 20:14:54
depth2
children0
last_payout2018-03-07 20:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.438 HBD
curator_payout_value0.063 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length299
author_reputation68,078,150,632,608
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,209,884
net_rshares92,477,244,225
author_curate_reward""
vote details (1)
@hadipedia ·
$0.04
Thanks your stopping my bog and upvote my post, now i,am follow you, next if your new post i can stopping your blog again.
👍  ,
properties (23)
authorhadipedia
permlinkre-ghasemkiani-using-scoped-npm-packages-20180305t170233153z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-05 16:55:54
last_update2018-03-05 16:55:54
depth1
children0
last_payout2018-03-12 16:55:54
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation11,115,030,435,071
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,421,475
net_rshares11,394,149,005
author_curate_reward""
vote details (2)
@haji ·
$0.06
nice post mashti
👍  
properties (23)
authorhaji
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t133135910z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:31:42
last_update2018-02-26 13:31:42
depth1
children0
last_payout2018-03-05 13:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation3,030,788,981,572
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,602,053
net_rshares10,215,426,515
author_curate_reward""
vote details (1)
@haji ·
resteem
properties (22)
authorhaji
permlinkre-ghasemkiani-using-scoped-npm-packages-20180227t102832145z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-27 10:28:39
last_update2018-02-27 10:28:39
depth1
children0
last_payout2018-03-06 10:28:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation3,030,788,981,572
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,835,312
net_rshares0
@harmonic ·
Thanks for your javascript post . I will waiting for your next post.
properties (22)
authorharmonic
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t141040688z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 14:10:42
last_update2018-02-26 14:10:42
depth1
children0
last_payout2018-03-05 14:10:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation408,894,292,076
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,610,755
net_rshares0
@hopsy ·
Scopes are a way of grouping related packages together, and also affect a few things about the way npm treats the package.
Each npm user/organization has their own scope, and only you can add packages in your scope. This means you don't have to worry about someone taking your package name ahead of you. Thus it is also a good way to signal official packages for organizations.
Scoped packages can be published and installed as of
npm@2 and are supported by the primary npm registry. Unscoped packages can depend on scoped packages and vice versa. The npm client is backwards-compatible with unscoped registries, so it can be used to work with scoped and unscoped registries at the same time.
Thanks for the post
properties (22)
authorhopsy
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t125849787z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:58:57
last_update2018-02-26 12:58:57
depth1
children0
last_payout2018-03-05 12:58:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length712
author_reputation46,334,015,767
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,595,234
net_rshares0
@ipankdhick ·
what's going on mr.hadipedia???
properties (22)
authoripankdhick
permlinkre-ghasemkiani-using-scoped-npm-packages-20180305t235054279z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-05 23:51:03
last_update2018-03-05 23:51:03
depth1
children0
last_payout2018-03-12 23:51:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation198,365,812,966
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,488,715
net_rshares0
@iskandar17 ·
Good post @ghasemkiani
properties (22)
authoriskandar17
permlinkre-ghasemkiani-2018226t233055845z
categoryjavascript
json_metadata{"tags":["javascript","programming","technology","nodejs","npm"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-26 16:34:18
last_update2018-02-26 16:34:18
depth1
children0
last_payout2018-03-05 16:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation11,225,254,044
root_title"Using Scoped NPM Packages"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,640,964
net_rshares0
@kangsukin ·
$0.04
nice post!!!
👍  
properties (23)
authorkangsukin
permlinkre-ghasemkiani-using-scoped-npm-packages-20180304t172503211z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-04 17:25:03
last_update2018-03-04 17:25:03
depth1
children0
last_payout2018-03-11 17:25:03
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation13,967,516,352,737
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,178,764
net_rshares10,212,818,205
author_curate_reward""
vote details (1)
@kazmi1 ·
informative and great post.
👍  
properties (23)
authorkazmi1
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t131519191z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:15:18
last_update2018-02-26 13:15:18
depth1
children0
last_payout2018-03-05 13:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation3,714,572,604,837
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,598,775
net_rshares2,433,713,216
author_curate_reward""
vote details (1)
@life.story ·
amazing post my dear friend
If you like you can see wonderful places in our country and I will be so happy if I know your comments about my posts dear
properties (22)
authorlife.story
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t202143331z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 20:21:15
last_update2018-02-26 20:21:15
depth1
children0
last_payout2018-03-05 20:21:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation163,595,617,016
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,684,884
net_rshares0
@madiha ·
Good job. Keep it up. Which programming language did you like most?
👍  
properties (23)
authormadiha
permlinkre-ghasemkiani-using-scoped-npm-packages-20180227t142519369z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-27 14:25:18
last_update2018-02-27 14:25:18
depth1
children0
last_payout2018-03-06 14:25:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation131,707,648,546
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,881,354
net_rshares587,354,453
author_curate_reward""
vote details (1)
@malibeauty ·
its a great info...
thanks for sharing....
properties (22)
authormalibeauty
permlinkre-ghasemkiani-using-scoped-npm-packages-20180302t174843257z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-02 17:48:45
last_update2018-03-02 17:48:45
depth1
children0
last_payout2018-03-09 17:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation-321,591,667,399
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,687,081
net_rshares0
@master11641 ·
$0.03
NPM is greate;i use it for manage angular packages.
👍  
properties (23)
authormaster11641
permlinkre-ghasemkiani-using-scoped-npm-packages-20180324t095437261z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-24 09:49:39
last_update2018-03-24 09:49:39
depth1
children1
last_payout2018-03-31 09:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation124,596,351,705
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,303,459
net_rshares10,221,262,166
author_curate_reward""
vote details (1)
@ghasemkiani ·
Thank you. And happy New Year! Hope to see you soon.
properties (22)
authorghasemkiani
permlinkre-master11641-re-ghasemkiani-using-scoped-npm-packages-20180326t082340759z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-26 08:23:42
last_update2018-03-26 08:23:42
depth2
children0
last_payout2018-04-02 08:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation90,438,911,242,538
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,651,742
net_rshares0
@mdfahim ·
You are so intelligent  @ghasemkiani
properties (22)
authormdfahim
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t124324192z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-26 12:43:24
last_update2018-02-26 12:43:24
depth1
children0
last_payout2018-03-05 12:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation195,478,349,651
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,591,957
net_rshares0
@mgood ·
$0.06
@ghasemkiani - I am not sure if you are still posting or not? 
2 things:
1. If you are still explaining English idioms here is one I used the other day in a response - the person was "gaming the system".
2. I wrote a post about a quote of Mawlānā  Rumi as an introduction to him and some philosophy.  If you happen to be interested - [Link](https://steemit.com/philosophy/@mgood/what-you-really-are-from-the-great-persian-poet-rumi)
👍  ,
properties (23)
authormgood
permlinkre-ghasemkiani-using-scoped-npm-packages-20180309t171452453z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"links":["https://steemit.com/philosophy/@mgood/what-you-really-are-from-the-great-persian-poet-rumi"],"app":"steemit/0.1"}
created2018-03-09 17:14:45
last_update2018-03-09 17:14:45
depth1
children3
last_payout2018-03-16 17:14:45
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length432
author_reputation1,309,342,498,884
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,365,112
net_rshares17,210,539,523
author_curate_reward""
vote details (2)
@ghasemkiani ·
$0.02
Thank you. Currently, I am preparing some educative posts on JavaScript programming. And thanks for the link on Rumi. I will definitely check it out!
👍  
properties (23)
authorghasemkiani
permlinkre-mgood-re-ghasemkiani-using-scoped-npm-packages-20180309t182224367z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-09 18:22:36
last_update2018-03-09 18:22:36
depth2
children2
last_payout2018-03-16 18:22:36
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation90,438,911,242,538
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,375,583
net_rshares7,120,806,856
author_curate_reward""
vote details (1)
@mgood ·
$0.03
Thanks.
👍  
properties (23)
authormgood
permlinkre-ghasemkiani-re-mgood-re-ghasemkiani-using-scoped-npm-packages-20180309t184109566z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-09 18:41:03
last_update2018-03-09 18:41:03
depth3
children0
last_payout2018-03-16 18:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,309,342,498,884
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,378,225
net_rshares10,214,185,780
author_curate_reward""
vote details (1)
@muhammadalikatu · (edited)
$0.03
Looking forward to your next educative post @ghasemkiani
👍  
properties (23)
authormuhammadalikatu
permlinkre-ghasemkiani-re-mgood-re-ghasemkiani-using-scoped-npm-packages-20180310t024815780z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1","users":["ghasemkiani"]}
created2018-03-10 02:48:45
last_update2018-03-10 02:49:24
depth3
children0
last_payout2018-03-17 02:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation1,654,144,645,948
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,436,977
net_rshares10,214,300,950
author_curate_reward""
vote details (1)
@msabbir ·
thanks for sharing this post..
i appreciate your post.. best of luck..
👍  
properties (23)
authormsabbir
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t130611252z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:06:24
last_update2018-02-26 13:06:24
depth1
children0
last_payout2018-03-05 13:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation145,565,764,456
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,596,810
net_rshares593,954,765
author_curate_reward""
vote details (1)
@naeemahmedd ·
Excellent post thank you for shere this info.....??
👍  
properties (23)
authornaeemahmedd
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t124136392z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:42:09
last_update2018-02-26 12:42:09
depth1
children0
last_payout2018-03-05 12:42:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation498,271,707,073
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,591,690
net_rshares1,779,973,898
author_curate_reward""
vote details (1)
@nayim533 ·
nice post ..thanking for learning post
properties (22)
authornayim533
permlinkre-ghasemkiani-using-scoped-npm-packages-20180227t092106807z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-27 09:21:12
last_update2018-02-27 09:21:12
depth1
children0
last_payout2018-03-06 09:21:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation10,905,102,954
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,823,023
net_rshares0
@nimik ·
$0.05
Nice post.
👍  
properties (23)
authornimik
permlinkre-ghasemkiani-using-scoped-npm-packages-20180228t054010986z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-28 05:40:12
last_update2018-02-28 05:40:12
depth1
children0
last_payout2018-03-07 05:40:12
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation856,557,847,201
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,042,301
net_rshares10,211,808,547
author_curate_reward""
vote details (1)
@nishadhasan ·
@ghasemkiani OMG. Now you start practicing node.js? You are genius.
properties (22)
authornishadhasan
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t154620014z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-26 15:46:18
last_update2018-02-26 15:46:18
depth1
children0
last_payout2018-03-05 15:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation629,661,035,277
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,631,234
net_rshares0
@rahat2347 ·
I love programming
properties (22)
authorrahat2347
permlinkre-ghasemkiani-using-scoped-npm-packages-20180309t163043310z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-09 16:30:48
last_update2018-03-09 16:30:48
depth1
children0
last_payout2018-03-16 16:30:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation681,509,508
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,357,830
net_rshares0
@raisa.marzan ·
nice post with beautiful words.
properties (22)
authorraisa.marzan
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t124341897z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:44:45
last_update2018-02-26 12:44:45
depth1
children1
last_payout2018-03-05 12:44:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation474,285,157,331
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,592,235
net_rshares0
@spaminator ·
$0.52
When you copy/paste or repeatedly type the same comments you could be mistaken for a bot. 

[Tips to avoid being flagged](https://steemit.com/steemit-abuse/@spaminator/updated-your-reputation-could-be-a-tasty-snack-with-the-wrong-comment)

Thank You! ⚜
👍  
properties (23)
authorspaminator
permlinkre-raisamarzan-re-ghasemkiani-using-scoped-npm-packages-20180226t202857483z
categoryjavascript
json_metadata{"tags":["javascript"],"links":["https://steemit.com/steemit-abuse/@spaminator/updated-your-reputation-could-be-a-tasty-snack-with-the-wrong-comment"],"app":"steemit/0.1"}
created2018-02-26 20:28:57
last_update2018-02-26 20:28:57
depth2
children0
last_payout2018-03-05 20:28:57
cashout_time1969-12-31 23:59:59
total_payout_value0.454 HBD
curator_payout_value0.064 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length252
author_reputation68,078,150,632,608
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,686,203
net_rshares92,477,244,225
author_curate_reward""
vote details (1)
@rasel1234 ·
very well post great writing D:)
properties (22)
authorrasel1234
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t142753423z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 14:28:00
last_update2018-02-26 14:28:00
depth1
children0
last_payout2018-03-05 14:28:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation107,696,836,345
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,614,580
net_rshares0
@riyad11 ·
thanks for sharing....
properties (22)
authorriyad11
permlinkre-ghasemkiani-using-scoped-npm-packages-20180302t174935883z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-02 17:49:42
last_update2018-03-02 17:49:42
depth1
children0
last_payout2018-03-09 17:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation83,439,904,438
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,687,238
net_rshares0
@rkaitra ·
This great post i appreciate your post....thanks for sharing....
properties (22)
authorrkaitra
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t130816785z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:08:30
last_update2018-02-26 13:08:30
depth1
children0
last_payout2018-03-05 13:08:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation705,269,649,419
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,597,316
net_rshares0
@rohit12123 ·
$0.05
Good job.Keep it up
👍  
properties (23)
authorrohit12123
permlinkre-ghasemkiani-using-scoped-npm-packages-20180227t045123678z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-27 04:51:33
last_update2018-02-27 04:51:33
depth1
children0
last_payout2018-03-06 04:51:33
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation3,553,562,276,116
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,775,901
net_rshares10,211,712,108
author_curate_reward""
vote details (1)
@rojib ·
your ppst is very informative.........i like this post.........
properties (22)
authorrojib
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t124817867z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:48:21
last_update2018-02-26 12:48:21
depth1
children0
last_payout2018-03-05 12:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation27,854,877,404
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,592,974
net_rshares0
@rzaman ·
Amazing post......i like your post..... thanks for sharing......
properties (22)
authorrzaman
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t125525460z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:55:30
last_update2018-02-26 12:55:30
depth1
children0
last_payout2018-03-05 12:55:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation-138,445,772,918
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,594,468
net_rshares0
@saddam1210 ·
$0.06
Nice post.  That idioms time u were 3-4 times in a day. Now r u busy sir ???
👍  
properties (23)
authorsaddam1210
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t133626802z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:36:36
last_update2018-02-26 13:36:36
depth1
children0
last_payout2018-03-05 13:36:36
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation110,797,071,519
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,603,093
net_rshares10,215,426,515
author_curate_reward""
vote details (1)
@sam1210 ·
$0.06
Excellent job.  Learning new things. Thank you for this opportunity.
👍  
properties (23)
authorsam1210
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t155718734z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 15:57:21
last_update2018-02-26 15:57:21
depth1
children0
last_payout2018-03-05 15:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation1,732,544,462,145
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,633,502
net_rshares10,211,679,416
author_curate_reward""
vote details (1)
@scipio ·
$1.15
Don't miss out on my [Learn Python Series](https://steemit.com/utopian-io/@scipio/learn-python-series-intro) @Ghasem :-)
👍  ,
properties (23)
authorscipio
permlinkre-ghasemkiani-using-scoped-npm-packages-20180227t143609032z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasem"],"links":["https://steemit.com/utopian-io/@scipio/learn-python-series-intro"],"app":"steemit/0.1"}
created2018-02-27 14:36:09
last_update2018-02-27 14:36:09
depth1
children1
last_payout2018-03-06 14:36:09
cashout_time1969-12-31 23:59:59
total_payout_value1.132 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation34,229,826,851,736
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,883,845
net_rshares202,145,414,175
author_curate_reward""
vote details (2)
@ghasemkiani ·
Of course. Thank you for letting me know.
👍  
properties (23)
authorghasemkiani
permlinkre-scipio-re-ghasemkiani-using-scoped-npm-packages-20180227t144529559z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-27 14:45:30
last_update2018-02-27 14:45:30
depth2
children0
last_payout2018-03-06 14:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation90,438,911,242,538
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,885,884
net_rshares613,853,321
author_curate_reward""
vote details (1)
@steemibu351 ·
that's pretty cool to know
properties (22)
authorsteemibu351
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t124441896z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 12:44:45
last_update2018-02-26 12:44:45
depth1
children0
last_payout2018-03-05 12:44:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation1,020,146,854,773
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,592,233
net_rshares0
@sushovon002 ·
Useful content sir... appreciate your work...👍
👍  
properties (23)
authorsushovon002
permlinkre-ghasemkiani-using-scoped-npm-packages-20180227t051116166z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-27 05:11:18
last_update2018-02-27 05:11:18
depth1
children0
last_payout2018-03-06 05:11:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation967,595,771,389
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,779,441
net_rshares300,495,696
author_curate_reward""
vote details (1)
@syedkashifhussai ·
$0.04
Great information sir @ghasemkiani . Im very sorry actually your topic very difficult but i will try my best .
Stay blessed and stee on!
👍  
properties (23)
authorsyedkashifhussai
permlinkre-ghasemkiani-using-scoped-npm-packages-20180307t152243780z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-03-07 15:22:45
last_update2018-03-07 15:22:45
depth1
children0
last_payout2018-03-14 15:22:45
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation13,303,701,158,637
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,896,218
net_rshares10,213,601,306
author_curate_reward""
vote details (1)
@syedkashifhussai ·
$0.03
Thank you very much for coming my post sir @ghasemkiani . Sir upload new post . Im waiting your new post .
Stay blessed
👍  
properties (23)
authorsyedkashifhussai
permlinkre-ghasemkiani-using-scoped-npm-packages-20180310t174349963z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-03-10 17:43:54
last_update2018-03-10 17:43:54
depth1
children0
last_payout2018-03-17 17:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation13,303,701,158,637
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,560,355
net_rshares10,214,300,950
author_curate_reward""
vote details (1)
@zakir.quetta ·
Nice post keep it up.
properties (22)
authorzakir.quetta
permlinkre-ghasemkiani-using-scoped-npm-packages-20180226t132702313z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-26 13:27:09
last_update2018-02-26 13:27:09
depth1
children0
last_payout2018-03-05 13:27:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation8,337,949,857,235
root_title"Using Scoped NPM Packages"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,601,111
net_rshares0
@zayanfaruk ·
Your incredible post and the pictures you post are very inspiring to my mind, please support me and give me a lot of upvote and follow me include your comment, hopefully useful, go ahead and hope you succeed in steemit. by @zayanfaruk.
properties (22)
authorzayanfaruk
permlinkre-ghasemkiani-201835t173415232z
categoryjavascript
json_metadata{"tags":["javascript","programming","technology","nodejs","npm"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-03-05 10:34:18
last_update2018-03-05 10:34:18
depth1
children0
last_payout2018-03-12 10:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length235
author_reputation379,379,489,866
root_title"Using Scoped NPM Packages"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,346,086
net_rshares0