# with `nextron`
$ nextron init my-app --template with-javascript
# with npx
$ npx create-nextron-app my-app --example with-javascript
# with yarn
$ yarn create nextron-app my-app --example with-javascript
$ cd my-app
# Install dependencies
$ yarn (or `npm install`)
# Run development mode
$ yarn dev (or `npm run dev`)
# Build packages
$ yarn build (or `npm run build`)