Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanmeet007/simple-express
Node.js Framework with simple and clean syntax. Provides file uploader , body parser , EJS file rendering etc out of the box making it beginner friendly.
https://github.com/sanmeet007/simple-express
node-framework nodejs nodejs-server simple-express
Last synced: 7 days ago
JSON representation
Node.js Framework with simple and clean syntax. Provides file uploader , body parser , EJS file rendering etc out of the box making it beginner friendly.
- Host: GitHub
- URL: https://github.com/sanmeet007/simple-express
- Owner: Sanmeet007
- License: gpl-3.0
- Created: 2022-09-24T15:31:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-18T18:23:30.000Z (over 1 year ago)
- Last Synced: 2025-01-03T23:36:16.379Z (9 days ago)
- Topics: node-framework, nodejs, nodejs-server, simple-express
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@sanmeet007/simple-express
- Size: 1.79 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple-Express
#### Simple , clean , minimalist web framework for Node.js.
```javascript
import express from "@sanmeet007/simple-express";
const app = express();app.get("/", (req, res) => {
return res.send("Hello World");
});app.listen(3000);
```The Simple-Express's idealogy is to provide small, beginner friendly , robust tooling in HTTP servers, making it a great solution for single page applications, websites, hybrids, or public HTTP APIs. Can be used for :
- `Web Applications` :
Simple-Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.
- `APIs` :
With a myriad of HTTP utility methods and middleware at your disposal, creating a robust API is quick and easy.
- `Supports Node.js` :
Express provides a thin layer of fundamental web application features, without obscuring Node.js features that you know and love.### Express vs Simple-Express
- Beginner Friendly
- Simple and clean
- Preinstalled body parsers
- Preinstalled file extractor
- Clean implementation of middlewares
- Uses EJS for rendering views### Dependencies
- `busboy` : For extracting files from the request
- `ejs` : For rendering different views[Read full Documentation](https://github.com/Sanmeet007/simple-express/wiki/Documentation)