2018-11-15 20:53:27 -06:00
|
|
|
# Switch Guide
|
2018-11-15 21:45:41 -05:00
|
|
|
|
2024-06-30 10:04:11 -07:00
|
|
|
[The guide can be found here!](https://switch.hacks.guide)
|
2018-12-27 12:06:35 -05:00
|
|
|
|
|
|
|
Nintendo Switch homebrew guide written by staff members of the Nintendo Homebrew Discord server.
|
|
|
|
|
2025-03-13 21:07:59 -05:00
|
|
|
## Running the site locally
|
2018-12-27 12:06:35 -05:00
|
|
|
|
2025-03-13 21:07:59 -05:00
|
|
|
This requires the following installed on your system:
|
2018-12-27 12:06:35 -05:00
|
|
|
|
2025-03-13 21:07:59 -05:00
|
|
|
* [node.js](https://nodejs.org/en)
|
|
|
|
|
|
|
|
To test the website locally, clone the source code:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/nh-server/switch-guide.git --recurse-submodules
|
|
|
|
cd switch-guide
|
|
|
|
```
|
|
|
|
|
|
|
|
Then simply run the following commands:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
npm ci
|
|
|
|
npm run docs:dev
|
|
|
|
```
|
|
|
|
|
|
|
|
The website should now be running on http://127.0.0.1:5173/ (or a port shown on the terminal). Any edits you make should appear live!
|