- 13" Macbook Pro 3.3 GHz i7 (late 2016)
- Microsoft Surface Book (2016)
- Dell up3216q 32" monitor
| // Originally provided here: http://pastebin.com/aJna4paJ | |
| 1. Go to Google Chrome | |
| 2. Go to any website (works cool on facebook) | |
| 3. Right click anywhere -> Inspect Element | |
| 4. Click on the rightmost "Console" tab. | |
| 5. Copy paste the following * into the console. | |
| 6. Make sure the volume isn't too loud! | |
| 7. Press Enter. | |
| 8. If the audio doesn't play and/or elements on the page don't move then the site has properly implemented a CSP |
| # Path to Oh-My-Zsh installation | |
| export ZSH=/Users/evanklein/.oh-my-zsh | |
| # Plugins | |
| plugins=(git) | |
| source $ZSH/oh-my-zsh.sh | |
| # Configure prompt | |
| export ZSH_THEME_GIT_PROMPT_PREFIX="[git:" |
| alexcvzz.vscode-sqlite | |
| andys8.jest-snippets | |
| apollographql.vscode-apollo | |
| austincummings.razor-plus | |
| bobsparadox.seti-black | |
| BriteSnow.vscode-toggle-quotes | |
| christian-kohler.npm-intellisense | |
| christian-kohler.path-intellisense | |
| CoenraadS.bracket-pair-colorizer | |
| dbaeumer.vscode-eslint |
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).