mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-13 05:06:30 +04:00
21 lines
576 B
Markdown
21 lines
576 B
Markdown
|
|
# Flipper Zero JavaScript SDK Wizard
|
||
|
|
This package contains an interactive wizard that lets you scaffold a JavaScript
|
||
|
|
application for Flipper Zero.
|
||
|
|
|
||
|
|
## Getting started
|
||
|
|
Create your application using the interactive wizard:
|
||
|
|
```shell
|
||
|
|
npx @flipperdevices/create-fz-app@latest
|
||
|
|
```
|
||
|
|
|
||
|
|
Then, enter the directory with your application and launch it:
|
||
|
|
```shell
|
||
|
|
cd my-flip-app
|
||
|
|
npm start
|
||
|
|
```
|
||
|
|
|
||
|
|
You are free to use `pnpm` or `yarn` instead of `npm`.
|
||
|
|
|
||
|
|
## Documentation
|
||
|
|
Check out the [JavaScript section in the Developer Documentation](https://developer.flipper.net/flipperzero/doxygen/js.html)
|