Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 223 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 223 Bytes

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...