Skip to content

km-saifullah/quick-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

JavaScript Express.js Node.js Mongoose

Installation & Usage

  1. Install the package in your project

    npm i quick-app
  2. 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...👍

License

MIT

Releases

No releases published

Packages

No packages published