ruzes
v2.0.1
Published
Create an API with express simply and quickly.
Downloads
501
Readme
Ruzes
Fast, simple, and secure. Quickly create basic APIs with Express for Node.js.
Example
const api = require('ruzes');
api.get('/', (req, res, response) => {
const random = response.random.Text('a', 'b', 'c', 'd', 'e', 'f');
response.json('result', random);
});
api.on(3000);
Installation
Before installing Ruzes into your project, ensure you have a configured package.json file. If you don't have one yet, you can create one by running npm init in the terminal. Also, make sure you have the Express package installed before (or after) installing Ruzes.
$ npm install ruzes
Express Installation
$ npm install express
Tip: Install the latest versions of Ruzes; they might contain new features or patched bugs.
Links and Community
- Discord Server (ERX'S)
- Ruzes Discord Server
- GitHub Organization
- Google Group
- Documentation [Under Development]
FAQs
- Can I use Express and Ruzes at the same time?
- In theory, it's possible. We tested some Express and Ruzes functions in our project, and it worked perfectly.
- What is Ruzes?
- Ruzes is an npm package that allows you to create simple GET-type basic APIs with Express.
License
MIT
DOCS
Coming soon...