Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/phongnguyend/practical-front-end
- Owner: phongnguyend
- Created: 2019-01-14T03:15:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T02:01:01.000Z (over 1 year ago)
- Last Synced: 2024-10-13T05:36:33.154Z (24 days ago)
- Topics: angular, babel, css, eslint, gulp, html, javascript, npm, reactjs, vuejs, webpack
- Homepage:
- Size: 14 MB
- Stars: 29
- Watchers: 2
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```