Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcello3d/node-safestart
Safe start ensures all your node dependencies exist and are up to date
https://github.com/marcello3d/node-safestart
Last synced: 15 days ago
JSON representation
Safe start ensures all your node dependencies exist and are up to date
- Host: GitHub
- URL: https://github.com/marcello3d/node-safestart
- Owner: marcello3d
- License: zlib
- Created: 2013-03-04T15:39:17.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-10-15T23:26:07.000Z (about 8 years ago)
- Last Synced: 2024-10-18T15:05:54.084Z (29 days ago)
- Language: JavaScript
- Size: 26.4 KB
- Stars: 15
- Watchers: 3
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: Readme.md
- Changelog: HISTORY.md
- License: LICENSE
Awesome Lists containing this project
README
Safe start
=================Checks if your dependencies are valid. Or throws an Error.
Usage / Examples
----------------```js
var safestart = require('safestart')safestart(__dirname) // throws an Error on failure
// you can exclude particular libraries, e.g. if you've installed
// `foo` from a fork on GitHub, causing a version mismatch
safestart(__dirname, {
exclude: ['foo']
})
```Can also be used commandline:
```
safestart
```Development
-----------When developing, be sure to test the package and also check the dependencies are free of CVEs.
```bash
npm run test
npm run scan_packages
```License
-------
Open source software under the [zlib license](LICENSE).