npm ls # list all modules in node_modules- lists all modules
npm ls --depth=0 # list all direct deps and devDeps- lists all modules that are direct dependencies (0 levels deep in the dependency tree)
npm ls <module> # list all trees that include <module>- lets you filter for a specific module
npm ls --prod # only show production modules + their deps- lets you filter for only production dependencies (dependencies in the
dependenciesproperty of package.json)
- lets you filter for only production dependencies (dependencies in the
npm ls --prod --depth=0 # only show direct prod deps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const ghUserEvents = require('gh-user-events'); | |
| var watches = 0; | |
| var comments = 0; | |
| var pushes = 0; | |
| var prs = 0; | |
| var createRepos = 0; | |
| var deleteRepos = 0; | |
| var reviews = 0; | |
| var issues = 0; |
- each week focus on a single working group, initiative or team
- tweet out their repo and name them
- point out some of the things they're currently working on / open to having help on
- have the wg/initiative/team open an issue offering to help onboard folks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 info it worked if it ends with ok | |
| 1 verbose cli [ | |
| 1 verbose cli '/home/bnb/.nvm/versions/node/v14.4.0/bin/node', | |
| 1 verbose cli '/home/bnb/.nvm/versions/node/v14.4.0/bin/npm', | |
| 1 verbose cli 'install' | |
| 1 verbose cli ] | |
| 2 info using npm@6.14.5 | |
| 3 info using node@v14.4.0 | |
| 4 verbose npm-session 3b025512bca24198 | |
| 5 silly install runPreinstallTopLevelLifecycles |
- roadmapping for Node.js
- meet GitHub Action updates
- figure out node_modules bundling for PRs
- normal issue maintenance in CommComm / examples
- extract version diffing from nodev into a module
- Build GitHub Actions
- "new PR" label Action
- voting via 👍 and 👎 reactions
- prerequisites.dev
- esminnodejs.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { "key": "alt+down", "command": "workbench.action.terminal.focusNextPane", | |
| "when": "terminalFocus" }, | |
| { "key": "alt+right", "command": "workbench.action.terminal.focusNextPane", | |
| "when": "terminalFocus" }, | |
| { "key": "alt+up", "command": "workbench.action.terminal.focusPreviousPane", | |
| "when": "terminalFocus" }, | |
| { "key": "alt+left", "command": "workbench.action.terminal.focusPreviousPane", | |
| "when": "terminalFocus" }, |