Skip to content

Commit b280f7c

Browse files
readme update
1 parent ff74f56 commit b280f7c

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,42 @@
11
# todo-app-typescript-nestjs
22

3+
- NodeJS application from scratch using Nestjs, MongoDB - a noSQL database perfect for using with Node
4+
** App feature **
5+
1. User account creation
6+
2. User Login
7+
3. create task and attachment
8+
4. update task
9+
10+
# Prerequisite
11+
- Below steps are needed only for the first time when you setup your dev machine
12+
1. nodejs - JavaScript runtime built on Chrome's V8 JavaScript engine
13+
2. mongodb - MongoDB is an open source cross-platform document-oriented database program.
14+
3. nestjs - NestJS is a progressive Node. js framework that helps build server-side applications.
15+
4. react - React is a free and open-source front-end JavaScript library for building
16+
user interfaces based on UI components.
17+
18+
# installing
19+
20+
1. Clone this git repository, if you haven't done already.
21+
```
22+
https://github.com/vinodnextcoder/todo-app-typescript-nestjs.git
23+
```
24+
after cloning repository you need run backend and frontend separete
25+
26+
## Backend
27+
```bash
28+
$ cd backend
29+
$ npm install
30+
$ npm start
31+
```
32+
33+
34+
## Frontend
35+
```bash
36+
$ cd frontend
37+
$ npm install
38+
$ npm start
39+
```
40+
41+
42+

0 commit comments

Comments
 (0)