express-ts skeleton

This commit is contained in:
2021-08-14 15:55:17 +02:00
parent cb19ff9c21
commit 1531f38435
38 changed files with 470 additions and 1 deletions

15
framework/install Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/node
const fs = require('fs')
const { exec } = require("child_process");
/**
* This will only works if the project folder is in the parent folder
* This is not global fs solution!
*/
console.log(__dirname);
fs.copyFile('./framework/src/artisan', './artisan', (err) => {
err ? console.log(err) : ''
})
console.log("\x1b[32m%s\x1b[0m", "Framework installed successfully!");