-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a92b3ef
commit a7091e3
Showing
47 changed files
with
21,938 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Submodule StarterCode
added at
c11176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
1. Download node js | ||
|
||
2. npm init | ||
|
||
|
||
3. pkg.json | ||
|
||
|
||
4. npm i husky lint-staged -D | ||
|
||
5. npx husky init | ||
|
||
6. Add this line inside Your package.json | ||
````bash | ||
"scripts": { | ||
"test": "node test.js", | ||
"prepare": "husky" | ||
}, | ||
|
||
```` | ||
|
||
6. create a file test.js | ||
|
||
|
||
7. Setup TypeScript | ||
|
||
```bash | ||
npm i typescript -D | ||
|
||
``` | ||
8. init TypeScript | ||
|
||
```bash | ||
npx tsc --init | ||
|
||
``` | ||
|
||
9. | ||
|
||
|
||
```bash | ||
npm i -D @types/node | ||
|
||
``` | ||
10 | ||
|
||
```bash | ||
npm i -D nodemon | ||
|
||
``` | ||
|
||
11. | ||
|
||
```bash | ||
npm i -D ts-node | ||
|
||
``` | ||
|
||
|
||
|
Oops, something went wrong.