Skip to content

Commit 19501b2

Browse files
authored
Merge pull request #1 from BinaryStudioAcademy/task/bsa-183-update-starter
BSA-183: Update starter
2 parents 2ed73e1 + 1f88e48 commit 19501b2

32 files changed

+2066
-1923
lines changed

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"tabWidth": 4,
3+
"useTabs": false,
4+
"semi": true,
5+
"singleQuote": true,
6+
"trailingComma": "none",
7+
"bracketSpacing": true,
8+
"arrowParens": "avoid",
9+
"quoteProps": "preserve",
10+
"printWidth": 120
11+
}

README.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1-
Starter for **HTTP, REST / WS** homework. Binary Studio Academy
1+
# HTTP, REST, WebSockets
22

3-
## Installation
3+
## 🏃‍♂️ Simple start
44

5-
`yarn install`
5+
1. **`npm install`** at the root
6+
2. **`npm run dev`** at the root
7+
3. open **`http://localhost:3333/`**
68

7-
`yarn start`
9+
## 🧹 Code style
810

9-
open http://localhost:3002/
11+
Run **`npm run format:check`** at the root to check code style.
12+
13+
Run **`npm run format:fix`** at the root to fix code style.
14+
15+
## 💡 PS
16+
17+
The project has a [Prettier](https://prettier.io/) set up, to validate your code.
18+
Please use it!
19+
20+
## 🤞 Good luck

0 commit comments

Comments
 (0)