Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

better-npm-run

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

better-npm-run - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

3

package.json
{
"name": "better-npm-run",
"description": "Better NPM scripts runner",
"version": "0.0.8",
"version": "0.0.9",
"license": "MIT",

@@ -17,2 +17,3 @@ "author": "Benjamin Orozco <benoror@gmail.com>",

"bin": {
"bnr": "index.js",
"better-npm-run": "index.js"

@@ -19,0 +20,0 @@ },

@@ -83,3 +83,3 @@ [![NPM](https://nodei.co/npm/better-npm-run.png)](https://npmjs.org/package/better-npm-run)

Currently, using [bash variables](http://tldp.org/LDP/abs/html/internalvariables.html) (PWD, USER, etc.) is not possible:
Currently, using [bash variables](http://tldp.org/LDP/abs/html/internalvariables.html) (PWD, USER, etc.) is not possible:

@@ -101,1 +101,27 @@ ``` JSON

```
## cli commands
This module expose 2 cli commands:
- `better-npm-run` and,
- a shorter one: `bnr` which is an alias to the former.
The shorter one is useful for cases where you have a script that calls several `better-npm-run` scripts. e.g:
using the normal cli name
```javascript
"scripts": {
"dev": "shell-exec 'better-npm-run install-hooks' 'better-npm-run watch-client' 'better-npm-run start-dev' 'better-npm-run start-dev-api' 'better-npm-run start-dev-worker' 'better-npm-run start-dev-socket'",
}
```
using the shorter alias
```javascript
"scripts": {
"dev": "shell-exec 'bnr install-hooks' 'bnr watch-client' 'bnr start-dev' 'bnr start-dev-api' 'bnr start-dev-worker' 'bnr start-dev-socket'",
}
```
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc