knox / Phaser-6.json
0 likes
0 forks
1 files
Last active
1 | "lib": ["es6", "dom", "dom.iterable", "scripthost"], |
2 | "typeRoots": ["./node_modules/phaser/types"], |
3 | "types": ["Phaser"] |
knox / Phaser-5.html
0 likes
0 forks
1 files
Last active
1 | <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.86.0/phaser.js"></script> |
2 | <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.86.0/phaser.min.js"></script> |
knox / Phaser-4.html
0 likes
0 forks
1 files
Last active
1 | <script src="//cdn.jsdelivr.net/npm/phaser@3.86.0/dist/phaser.js"></script> |
2 | <script src="//cdn.jsdelivr.net/npm/phaser@3.86.0/dist/phaser.min.js"></script> |
knox / Phaser-3.sh
0 likes
0 forks
1 files
Last active
1 | npm install phaser |
knox / Phaser-2.md
0 likes
0 forks
1 files
Last active
Frameworks | Bundlers |
---|---|
Vue.js | Vite |
React | Rollup |
Angular | Parcel |
Next.js | Webpack |
SolidJS | ESBuild |
Svelte | Import Map |
Remix | Bun |
knox / Phaser-1.sh
0 likes
0 forks
1 files
Last active
1 | npm create @phaserjs/game@latest |
2 | npx @phaserjs/create-game@latest |
3 | yarn create @phaserjs/game |
4 | pnpm create @phaserjs/game@latest |
5 | bun create @phaserjs/game@latest |
knox / DevDocs-4.md
0 likes
0 forks
1 files
Last active
Project | Description | Last commit | Stars |
---|---|---|---|
yannickglt/alfred-devdocs | Alfred workflow | ||
Merith-TK/devdocs_webapp_kotlin | Android application | ||
gruehle/dev-docs-viewer | Brackets extension | ||
egoist/devdocs-desktop | Electron application | ||
skeeto/devdocs-lookup | Emacs function | ||
astoff/devdocs.el | Emacs viewer | ||
naquad/devdocs-shell | GTK shell with Vim integration | ||
hardpixel/devdocs-desktop | GTK application |
knox / DevDocs-3.sh
0 likes
0 forks
1 files
Last active
1 | # Server |
2 | rackup # Start the server (ctrl+c to stop) |
3 | rackup --help # List server options |
4 | |
5 | # Docs |
6 | thor docs:list # List available documentations |
7 | thor docs:download # Download one or more documentations |
8 | thor docs:manifest # Create the manifest file used by the app |
9 | thor docs:generate # Generate/scrape a documentation |
10 | thor docs:page # Generate/scrape a documentation page |
knox / DevDocs-2.sh
0 likes
0 forks
1 files
Last active
1 | # First, build the image |
2 | git clone https://github.com/freeCodeCamp/devdocs.git && cd devdocs |
3 | docker build -t thibaut/devdocs . |
4 | |
5 | # Finally, start a DevDocs container (access http://localhost:9292) |
6 | docker run --name devdocs -d -p 9292:9292 thibaut/devdocs |