New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

deep-shell

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-shell

deepjs promised based shell chain

latest
Source
npmnpm
Version
0.4.9
Version published
Maintainers
1
Created
Source

deep-shell

Promised based chain to manage shell call (asynchronously obviously).


deep.sh(".")
.ls()
.pwd()
.exec("cat -b ../test")
.done(function(s){
	//...
})
.elog();

install

globally

To have access to dpsh (cli env with deep-shell, deep-restful, deep-views and deep-node loaded) :

> npm install -g deep-shell

launch :

> dpsh

usage :

deep.sh(".").pwd()...fs("...").from("...")...elog();

example of script in deep-shell/bin/bmpv that bump package.json version, update git tag, push everything and publish on npm.

> cd your/git/npm/module
> bmpv minor

locally

> npm install deep-shell
var deep = require("deepjs");
require("deep-shell");
deep.sh(".").pwd()...fs("...").from("...")...elog();

FAQs

Package last updated on 27 Sep 2014

Did you know?

Socket

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