https://github.com/luc-ribeiro/nlw-05-chatty-node
Chatty is a real-time customer service chat. Built with Node.js, Express and Socket.io
https://github.com/luc-ribeiro/nlw-05-chatty-node
express nodejs socket-io sqlite3 typescript
Last synced: 2 months ago
JSON representation
Chatty is a real-time customer service chat. Built with Node.js, Express and Socket.io
- Host: GitHub
- URL: https://github.com/luc-ribeiro/nlw-05-chatty-node
- Owner: luc-ribeiro
- Created: 2021-06-28T15:10:43.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T22:44:36.000Z (about 2 years ago)
- Last Synced: 2025-03-15T05:44:07.369Z (over 1 year ago)
- Topics: express, nodejs, socket-io, sqlite3, typescript
- Language: TypeScript
- Homepage:
- Size: 85.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-PTBR.md
Awesome Lists containing this project
README
Next Level Week #05 - Chatty
## 💻 Projeto
O Chatty é um chat para atendimento de clientes em tempo real.
## 🚀 Tecnologias
- **Node.js**
- **Express**
- **TypeScript**
- **Socket.io**
## :page_facing_up: Como utilizar
Faça um clone deste repositório:
```sh
$ git clone https://github.com/luc-ribeiro/nlw-05-chatty-node.git
```
Instale as dependências:
```sh
# com npm
$ npm install
# com yarn
$ yarn install
```
**Caso ainda não tenha o arquivo `database.sqlite` dentro da pasta `src/database`, crie esse arquivo e rode `yarn typeorm migration:run` para criar as tabelas do banco de dados.**
Execute o comando:
```sh
# com npm
$ npm run dev
# com yarn
$ yarn dev
```
Acesse o projeto em `localhost:3333`