https://api-ibambe.onrender.com/api/all/songs
- User can sign up
- User can sign in
- User can stream music
POST /api/signup
: Creates a new userPOST /api/signin
: Logs in a userGET /api/all/songs
: Gets songs as JSON file
Signup expects
{
username: string,
email: string,
password: string
}
Signin expects
{
email: string,
password: string
}
- NodeJS/Express: Server
- MongoDB: Storage
- JWT: Token based authentication
- bcryptjs: Password security
- winston: Logs
start
: Starts the server with nodestart:dev
: Starts the server in watch mode
Want to add your inputs to the repo? We invite you to contribute.
Head to CONTRIBUTING.md to start contributing.