mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 12:42:09 +00: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')
|
|
})
|