Socket
Socket
Sign inDemoInstall

write-pkg

Package Overview
Dependencies
13
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    write-pkg

Write a package.json file


Version published
Weekly downloads
1M
decreased by-17.41%
Maintainers
1
Install size
145 kB
Created
Weekly downloads
 

Readme

Source

write-pkg Build Status

Write a package.json file

Writes atomically and creates directories for you as needed.

Install

$ npm install --save write-pkg

Usage

var path = require('path');
var writePkg = require('write-pkg');

writePkg({foo: true}).then(function () {
	console.log('done');
});

writePkg(__dirname, {foo: true}).then(function () {
	console.log('done');
});

writePkg(path.join('unicorn', 'package.json'), {foo: true}).then(function () {
	console.log('done');
});

API

writePkg([path], data)

Returns a promise.

readPkg.sync([path], data)

path

Type: string
Default: .

Path to where the package.json file should be written or its directory.

  • read-pkg - Read a package.json file
  • write-json-file - Stringify and write JSON to a file atomically

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 02 Sep 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc