Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

generator-phaser3-parcel

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generator-phaser3-parcel

A Yeoman generator for Phaser 3 projects, using Parcel as a bundler. It features ES6, eslint config and a basic project skeleton with a loading screen.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

generator-phaser3-parcel

A Yeoman generator for a Phaser 3 project, with Parcel as bundler. It features ES6, eslint config, and a basic project skeleton with a loading screen.

How to use

You need to install globally both Yeoman client and this generator:

npm install -g yo
npm install -g generator-phaser3-parcel

Then, run the generator with:

yo phaser3-parcel

After you answer some questions about the game you want to make, the following project structure will be created:

.
├── README.md
├── package.json
└── src
    ├── assets
    │   ├── audio
    │   └── images
    │       ├── character.png
    │       └── loading-bar.png
    ├── index.html
    ├── main.js
    ├── prefabs
    ├── scenes
    │   ├── loading-scene.js
    │   └── main-scene.js
    └── utils
        └── constants.js

Install the dependencies with your favourite package manager. For example:

npm install

You can run a development build with:

npm start

Once your game is ready to go, run a production build with:

npm run build

Happy coding! ✨🕹✨

License

See LICENSE for details.

Keywords

FAQs

Package last updated on 02 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc