Skip to content

Release v0.1.7-beta

Compare
Choose a tag to compare
@arakilian0 arakilian0 released this 01 Nov 16:05
· 4 commits to master since this release

Node.js copying utility. Provide a source and a destination, and mkcp() will go ahead and copy the source into the destination. The source can either be a file or directory. The destination has to be a directory, and you can create multi level directories by using slash / notation.

Example:

const mkcp = require('mkcp');

mkcp('test.js', 'build/test');