Website for easy project-sharing and connecting students and educators interested in space exploration
- clone repository
- install mongodb and run on default port
- run npm start
- open url:
post localhost:3001/spaceconnect/users/register
- request payload
{
"name":"hello",
"password":"strongpass",
"userid":"helloid",
"email":"[email protected]"
}
sample response:
{
"newUser": {
"_id": "5f7916226dacb1c03b63ec11",
"name": "hello",
"userid": "helloid",
"email": "[email protected]",
"createdAt": "2020-10-04T00:24:13.498Z",
"updatedAt": "2020-10-04T00:24:31.458Z",
"__v": 1
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI1Zjc5MTYyyEAmrLqBJoPlcIEgItE"
}
- open url:
post localhost:3001/spaceconnect/users/login
- request payload
{
"password":"strongpass",
"userid":"helloid"
}
sample response:
{
"userFound": {
"_id": "5f7916226dacb1c03b63ec11",
"name": "hello",
"userid": "helloid",
"email": "[email protected]",
"createdAt": "2020-10-04T00:24:13.498Z",
"updatedAt": "2020-10-04T01:42:16.556Z",
"__v": 3
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI1Zjc5MTYyMjZkYWN_lWxJTIQK6zg"
}