hurrymaplelad
hurrymaplelad

Reputation: 27745

How does nodejistu private npm decide if a module should be private?

Does every module I publish to https://<private>.registry.nodejitsu.com/ become private?

I assumed the private package.json flag would play into it, but I just published a module intended for NPM to nodejitsu, configured as my default registry as recommended, and it got trapped as a private module.

Upvotes: 1

Views: 28

Answers (1)

hurrymaplelad
hurrymaplelad

Reputation: 27745

After a chat with nodejitsu support, yep, they're all private. Publish public modules directly to npmjs.org:

$ npm publish --registry="http://registry.npmjs.org" 

Upvotes: 1

Related Questions