https://github.com/techiediaries/nestjs-chatkit
https://github.com/techiediaries/nestjs-chatkit
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/techiediaries/nestjs-chatkit
- Owner: techiediaries
- Created: 2018-11-19T22:31:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-25T00:38:53.000Z (over 7 years ago)
- Last Synced: 2025-10-29T00:07:38.555Z (9 months ago)
- Language: TypeScript
- Size: 92.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Building a Full-Stack Mobile App with Ionic 4, Nest.js and Chatkit (Part 1)
In this first part of a tutorial series to learn how to build a full-stack mobile application with cutting-edge technologies like Ionic 4, Nest.js and Pusher's Chatkit you will be building the back-end of the application with Nest.js.
## Getting Started
### Prerequisites
You need to have a basic understanding of TypeScript and Node.js to follow this tutorial.
TypeScript is a super-set of JavaScript that adds static types to the language. Both Nest.js and Ionic 4 (based on Angular) requires TypeScript so you need to be familiar with it.
You also need to have Node.js and NPM installed on your machine, if they are not installed on your system, you simply need to head to the [official website](https://nodejs.org/) and grab the binaries for your system or refer to your operating system instructions for installing Node.js via the official package manager of your system.
Next, clone the repository using
```
git clone https://github.com/techiediaries/nestjs-chatkit.git
```
Next, navigate inside the project's folder and install the dependenices:
```bash
cd nestjs-chatkit
npm install
```
Finally, start the development server using:
```
npm start
```
## Built With
* [Pusher's Chatkit](https://docs.pusher.com/chatkit) - APIs to enable devs building chat apps
* TypeScript and Nest.js