Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/km-saifullah/quick-app
Starter files and directories for an express application
https://github.com/km-saifullah/quick-app
express-app express-js mern mern-stack npm npm-package quick-app
Last synced: 1 day ago
JSON representation
Starter files and directories for an express application
- Host: GitHub
- URL: https://github.com/km-saifullah/quick-app
- Owner: km-saifullah
- Created: 2024-07-26T16:21:33.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T04:54:31.000Z (2 months ago)
- Last Synced: 2024-10-07T04:49:04.964Z (about 1 month ago)
- Topics: express-app, express-js, mern, mern-stack, npm, npm-package, quick-app
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/quick-app
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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.
[![JavaScript](https://img.shields.io/badge/JavaScript-323332?style=flat-square&logo=javascript)](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
[![Express.js](https://img.shields.io/badge/Express.js-404D59?style=flat-square&logo=express)](https://expressjs.com/)
[![Node.js](https://img.shields.io/badge/Node.js-438937?style=flat-square&logo=node.js)](https://nodejs.org/)
[![Mongoose](https://img.shields.io/badge/Mongoose-4DB33F?style=flat-square&logo=mongodb)](https://mongoosejs.com/)## Installation & Usage
1. Install the package in your project
```bash
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```javascript
{
"type": "module",
}
```b. Now write the code below to main.js file
```javascript
import server from "quick-app";
import fs from "fs";server();
fs.unlinkSync("./main.js");
```c. Finally run the main.js file
```bash
node main.js
```Now you are ready to build your own express application according to your need.
Happy Coding...👍
## License
[MIT](https://github.com/expressjs/express/blob/HEAD/LICENSE)