mirror of
https://github.com/zhigang1992/npm.git
synced 2026-06-11 08:03:45 +08:00
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
var init = require('../init-package-json.js')
|
|
var path = require('path')
|
|
var dir = process.cwd()
|
|
|
|
init(dir, 'file that does not exist', function (err, data) {
|
|
if (!err) console.log('written successfully')
|
|
})
|