marp |
---|
true |
This whole slideshow is on vscode.dev right now!
If you only remember one thing: Web Extension Guide
Normal extension | Web extension |
---|---|
Same with no code/no main |
Same with no code/no main |
Can be bundled or not. | Needs to be bundled into 1 JavaScript file. |
Has a main in its package.json |
Has browser in its package.json |
Can use node libraries like fs or path |
Needs web compliant alternatives like path-browserify |
Can use fs for accessing files |
Use VS Code's FileSystemProvider instead to access files. |