nomake

Node.js make, use async/await with few helpers to script


Keywords
npm, node, make, bash, script, async
License
MIT
Install
npm install nomake@0.1.0

Documentation

Node.js Make

Work in progress

Like shelljs make but takes advantages of async / await in Node.js

Usage

makefile.js :

target.hello = async function() {
  console.log("Hello world");
};

More to come...