Node.js server for real time chat
About | Installations | How to Use | Documentation | Technologies | License
This server is made to serve the MSN-Messenger app develop by Gabriel Godoy. This applications is capable to register users and messages in order implements a real time chat.
To use this API, it's require install in your computer:
-
Copy the .env.example to a new file called
.env
and configure your database and application port -
Create a database, for example:
create database "msn-messenger"
- Execute the commands below in project directory to use this API in your computer:
# Install dependencies
npm install;
# Create database
npm run migrations;
# Run project in development mode
npm run dev;
# Runing in http://localhost:3333/
This project is under the license MIT.