Welcome to mirror list, hosted at ThFree Co, Russian Federation.

example-npm.js « example « init-package-json « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 292da6a7a7a23bcf837d99fec37470e8498eb05b (plain)
1
2
3
4
5
6
7
8
9
10
11
var init = require('../init-package-json.js')
var dir = process.cwd()
var npm = require('npm')

npm.load(function (er, npm) {
  if (er) throw er
  init(dir, npm.config.get('init-module'), npm.config, function (er, data) {
    if (er) throw er
    console.log('written successfully')
  })
})