https://github.com/remrkabledev/node-restful-library
A simple RESTful API made with Node.js utilising ES6 practices (As much as possible at least, hehe)
https://github.com/remrkabledev/node-restful-library
Last synced: 4 months ago
JSON representation
A simple RESTful API made with Node.js utilising ES6 practices (As much as possible at least, hehe)
- Host: GitHub
- URL: https://github.com/remrkabledev/node-restful-library
- Owner: reMRKableDev
- Created: 2020-02-22T21:25:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-09T20:06:07.000Z (over 1 year ago)
- Last Synced: 2025-07-02T16:48:02.679Z (12 months ago)
- Language: JavaScript
- Size: 86.9 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A RESTful Library
A summary on a simple node-express api.
## Getting Started
Introduces RESTful api operations via an Express server. Utilizes the following methods from express:
``` javascript
.get(),
.post(),
.put(),
.delete()
```
### Prerequisites
What things you need to install the software and how to install them
```
node.js
express
```
### How To:
To use the examples provided:
1. Clone repo.
2. Run 'npm install' on your local repo so as to get the required dependencies.
3. Start up server with node / nodemon.
Have fun :)