Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiranwankhade/glitchapi
Glitch deploy
https://github.com/kiranwankhade/glitchapi
Last synced: about 17 hours ago
JSON representation
Glitch deploy
- Host: GitHub
- URL: https://github.com/kiranwankhade/glitchapi
- Owner: kiranwankhade
- Created: 2023-03-20T16:45:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-03-20T16:47:25.000Z (over 1 year ago)
- Last Synced: 2024-04-23T05:07:21.767Z (7 months ago)
- Language: JavaScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bankapp-mock-api
#### Prerequisite
* Create a folder
```
mkdir bankapp-mock-api
cd bankapp-mock-api
```#### Step 1: Create a node js project
```
npm init -y
```#### Step 2: Install json server dependency
```
npm i json-server
```#### Step 3: Create server.js
```js
const jsonServer = require('json-server')const server = jsonServer.create()
const router = jsonServer.router('db.json')
const middlewares = jsonServer.defaults()
server.use(middlewares)
server.use('/api', router)
server.listen(process.env.PORT || 5000, () => {
console.log('JSON Server is running')
})```
#### Step 4: Create db.json
```js
{
"users": [
{ "id": 1, "name":"Naresh Kumar H", "email":"[email protected]",
"password":"pass123", "role": "USER"
},
{ "id": 2, "name":"Tushant", "email":"[email protected]",
"password":"pass123", "role": "ADMIN"
}
],
"accounts":[],
"transactions":[]
}
```#### Step 5: Run the Node JS Project
```
node server.js
```#### Step 6: Test - List Users API
```
http://localhost:5000/api/users
```Output:
```js
[
{
id: 1,
name: "Naresh Kumar H",
email: "[email protected]",
password: "pass123",
role: "USER"
},
{
id: 2,
name: "Tushant",
email: "[email protected]",
password: "pass123",
role: "ADMIN"
}
]
```#### Step 7: Test - View User Details API
```
http://localhost:5000/api/users/1
```Output:
```js
{
id: 1,
name: "Naresh Kumar H",
email: "[email protected]",
password: "pass123",
role: "USER"
}
```