Skip to content

Instantly share code, notes, and snippets.

@GoodGuyNick
Last active October 10, 2018 07:28
Show Gist options
  • Save GoodGuyNick/db9d57ce88f9041e26523b292291fac5 to your computer and use it in GitHub Desktop.
Save GoodGuyNick/db9d57ce88f9041e26523b292291fac5 to your computer and use it in GitHub Desktop.
Web Dev

https://insights.stackoverflow.com/survey/2017

https://coggle.it/diagram/Vz9LvW8byvN0I38x

https://github.com/kamranahmedse/developer-roadmap

Уроки/Курсы:

Coding Challenges:

Остальное

NPM

Для того, чтобы работал eslint с конфигом https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb, тебе придётся его устанавливать в каждый новый проект.

--save-dev - с этой опцией пакет будет устанавливаться в папку проекта

-g - с этой опцией пакет будет устанавливаться в глобальную папку

Если в новом проекте будет снова выдавать ошибку об eslint-plugin-html, то установи его в папку проекта npm install --save-dev eslint-plugin-html

npm list -g --depth=0 - list of the installed packages

To uninstall a npm module from project node_modules folder, run: npm uninstall <module> --save Note that npm modules should be uninstalled from the same directory that contains the node_modules folder when running this command. The --save option will also remove it from your package.json

To uninstall a npm module that was installed globally, run: npm uninstall -g <module>

To find out which packages need to be updated, you can use npm outdated -g --depth=0

To update all global packages, you can use: npm update -g

When you get stuck, remember: Read-Search-Ask.

  1. Read the documentation or error
  2. Search Google
  3. Ask your friends or someone for help
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment