victorsouza19 / user-api

:octocat: RestAPI with Knex.js and JSON Web Token.
0 stars 0 forks source link
node nodejs rest rest-api

User API


![Badge](https://img.shields.io/badge/Node.js-339933?style=for-the-badge&logo=nodedotjs&logoColor=white) ![Badge](https://img.shields.io/badge/Express.js-000000?style=for-the-badge&logo=express&logoColor=white) ![Badge](https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E) ![Badge](https://img.shields.io/badge/JWT-000000?style=for-the-badge&logo=JSON%20web%20tokens&logoColor=white) ![Badge](https://img.shields.io/badge/MySQL-005C84?style=for-the-badge&logo=mysql&logoColor=white)

RestAPI of user manipulation.

:construction: Recent Features

💻 Prerequisites

Before start, make sure you meet these requirements:

🚀 Installing and Configuring

To install UserAPI, follow these steps:

Clone the project and run the command in the root directory:

npm install


Change the file .envexample with your environment variables:

## database config
DB_HOST=127.0.0.1
DB_USER=user
DB_PWD=password
DB_NAME=database

## E-mail trigger config
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=465
EMAIL_USER=youremail@gmail.com
EMAIL_PASSWORD=123456
## if your SMTP server didn't use SSL/TLS put false
EMAIL_SECURE=true

## JWT config
JWT_SECRET=f9f217a18745919771a7936b3a164121a

After that, rename the file to .env

☕ Using the UserAPI.

Run the server with this line in the command line:

node index.js

(I recommend nodemon to server auto-restart after changes)

Test and enjoy! 😅

:books: Documentation

To view the API documentation, check the file DOCUMENTATION.

📫 Contributing for this project.

To contribute, follow these steps:

  1. Fork this repository.
  2. Create a branch with your feature name: git checkout -b mynewfeature.
  3. Make your changes and confirm: git commit -m 'messagehere'
  4. Push your change to the original branch: git push origin mynewfeature
  5. Create the pull request.

Instead, you can check the GitHub documentation Creating a Pull Request.

🤝 Contributors

Victor Souza image
Victor Souza

📝 License

This project is under license. Check the file LICENSE for more details.

⬆ Go back to the top!