https://github.com/noman-land/piconet
A p2p pico-8 chatroom.
https://github.com/noman-land/piconet
60fps gpio gpio-pins lua npm pico-8 pico8 typescript
Last synced: 7 months ago
JSON representation
A p2p pico-8 chatroom.
- Host: GitHub
- URL: https://github.com/noman-land/piconet
- Owner: noman-land
- Created: 2023-11-12T00:09:34.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T04:49:41.000Z (over 1 year ago)
- Last Synced: 2024-06-20T16:27:22.428Z (over 1 year ago)
- Topics: 60fps, gpio, gpio-pins, lua, npm, pico-8, pico8, typescript
- Language: HTML
- Homepage: https://piconet.noman.land/
- Size: 9.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# piconet
A p2p pico-8 chatroom.

## Development
### In the browser
1. Run `npm i && npm run dev`
### In a native pico-8
Keep the project folder where you keep all your coding projects, then symlink it to the pico-8 carts folder. On a Mac this would be something similar to:
```bash
ln -s $HOME/dev/piconet $HOME/Library/Application\ Support/pico-8/carts
```In the pico8 terminal you can load the game by running:
```bash
load piconet/piconet.p8
```## Deployment
1. Make sure to set a shell variable for `$PICO8_PATH`. On a Mac, something similar to the following can be added to your `.bashrc` or `.zshrc` or whatever shell you use.
```bash
export PICO8_PATH="/Applications/pico-8/PICO-8.app/Contents/MacOS/pico8"
```1. Run `npm run export`.
1. Push to Github.