nomake

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

Usage no npm install needed!

<script type="module">
  import nomake from 'https://cdn.skypack.dev/nomake';
</script>

README

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