quick-app
v2.0.3
Published
Starter files & directories for an express application
Downloads
37
Maintainers
Readme
quick-app
Starter files and directories for an express application. Using this package you can create a new express app with all necessary files and directories.
Installation & Usage
Install the package in your project
npm i quick-app
Use this package in your project
a. Create a javascript file in your root directory as main.js b. Change in your package.json file
{ "type": "module", }
b. Now write the code below to main.js file
import server from "quick-app"; import fs from "fs"; server(); fs.unlinkSync("./main.js");
c. Finally run the main.js file
node main.js
Now you are ready to build your own express application according to your need.
Happy Coding...👍