Skip to content

Commit

Permalink
docs(generic): mention alternate ways of creating new Electron apps w…
Browse files Browse the repository at this point in the history
…ith Forge
  • Loading branch information
malept authored and MarshallOfSound committed Aug 17, 2017
1 parent 6d2cf4b commit 419962a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,22 @@ jump right in to Electron development.
npm install -g electron-forge
electron-forge init my-new-app
cd my-new-app
electron-forge start
npm start
```

Alternatively, if you have a more recent version of `npm` or `yarn`, you can use
[`npx`](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b),
or
[`yarn create`](https://yarnpkg.com/blog/2017/05/12/introducing-yarn/).

```bash
npx electron-forge init my-new-app
# or
yarn create electron-app my-new-app

# then
cd my-new-app
npm start
```

# Project Goals
Expand Down

0 comments on commit 419962a

Please sign in to comment.