Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/phongnguyend/practical-front-end

essential front-end skills for .Net developers
https://github.com/phongnguyend/practical-front-end

angular babel css eslint gulp html javascript npm reactjs vuejs webpack

Last synced: 9 days ago
JSON representation

essential front-end skills for .Net developers

Awesome Lists containing this project

README

        

### Visual Code Extensions:
- [Prettier - Code formatter](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
- [Blockman - Highlight Nested Code Blocks](https://marketplace.visualstudio.com/items?itemName=leodevbro.blockman)
- [Todo Tree](https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree)
- [vscode-icons](https://marketplace.visualstudio.com/items?itemName=robertohuertasm.vscode-icons)
- [Microsoft Edge (Chromium) Tools for VSCode](https://marketplace.visualstudio.com/items?itemName=ms-edgedevtools.vscode-edge-devtools)
- [Debugger for Microsoft Edge](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-edge)
- [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome)

### Date Libraries:
- [moment](https://github.com/moment/moment/)
- [date-fns](https://github.com/date-fns/date-fns)

### Install Node.js on Ubuntu
```shell
# https://linuxize.com/post/how-to-install-node-js-on-ubuntu-22-04/
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install nodejs
node -v
npm -v
```

### Uninstall Node.js on Ubuntu
```shell
# https://bytexd.com/how-to-uninstall-nodejs-in-ubuntu/
sudo apt-get remove nodejs
node -v
npm -v
```