File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1
1
# todo-app-typescript-nestjs
2
2
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
+
You can’t perform that action at this time.
0 commit comments