diff --git a/project_scaffold_cli/templates/nodejs/index.js.j2 b/project_scaffold_cli/templates/nodejs/index.js.j2 new file mode 100644 index 0000000..f45577b --- /dev/null +++ b/project_scaffold_cli/templates/nodejs/index.js.j2 @@ -0,0 +1,12 @@ +#!/usr/bin/env node + +/** + * {{ project_name }} + * {{ description }} + */ + +function main() { + console.log('Welcome to {{ project_name }}!'); +} + +main();