You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
534 B
Markdown
33 lines
534 B
Markdown
# Developer Kit Day1
|
|
|
|
Developer Kit : Frontend
|
|
|
|
## Focus
|
|
|
|
* HTML
|
|
* CSS
|
|
* Javascript
|
|
|
|
## Tools
|
|
|
|
* [Visual Studio Code](https://code.visualstudio.com/download)
|
|
+ Ubuntu 20.04
|
|
```
|
|
// to install from Snap store
|
|
$ sudo snap install --classic code
|
|
|
|
// to run vscode
|
|
$ code .
|
|
```
|
|
* [NodeJS](https://nodejs.org/en)
|
|
|
|
## Visual Studio Code Extension
|
|
|
|
* Live Server
|
|
* Debugger for Chrome
|
|
|
|
## Debugger
|
|
|
|
* add `debugger` to code to stop and debug at chrome
|
|
* [VS Code Debugger](https://code.visualstudio.com/docs/editor/debugging)
|