All Projects → phaser-cli → phaser-cli

phaser-cli / phaser-cli

Licence: MIT License
Create Phaser projects with no build configuration.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
HTML
75241 projects

Projects that are alternatives of or similar to phaser-cli

universal-scripts
Build universal apps without configuration.
Stars: ✭ 23 (-56.6%)
Mutual labels:  zero-configuration, build-tools
Create Next App
Create Next.js apps in one command
Stars: ✭ 2,783 (+5150.94%)
Mutual labels:  zero-configuration, build-tools
Create React App
Set up a modern web app by running one command.
Stars: ✭ 92,264 (+173983.02%)
Mutual labels:  zero-configuration, build-tools
create-contentful-app
Bootstrap a Contentful App
Stars: ✭ 68 (+28.3%)
Mutual labels:  zero-configuration, build-tools
react-starter-kit
🚀 React starter kit for a modern single page (SPA) application (dependencies updated at 28 July 2017). Zero configuration. Ready to go. Just paste your code!
Stars: ✭ 26 (-50.94%)
Mutual labels:  zero-configuration, build-tools
create-wp-react-app
Create React WordPress plugin with no build configuration.
Stars: ✭ 56 (+5.66%)
Mutual labels:  zero-configuration, build-tools
kkt
Create React apps with no build configuration, Cli tool for creating react apps.
Stars: ✭ 40 (-24.53%)
Mutual labels:  zero-configuration, build-tools
rocketact
🚀Developing React projects with ease
Stars: ✭ 45 (-15.09%)
Mutual labels:  zero-configuration, build-tools
react-gallery-carousel
Mobile-friendly gallery carousel 🎠 with server side rendering, lazy loading, fullscreen, thumbnails, touch, mouse emulation, RTL, keyboard navigation and customisations.
Stars: ✭ 178 (+235.85%)
Mutual labels:  zero-configuration
HTML5-Games
手撸主流h5游戏引擎项目源码,配套相关博客。
Stars: ✭ 16 (-69.81%)
Mutual labels:  phaser
Cavemen-GGJ2019
A multiplayer survival game developed during Global Game Jam 2019.
Stars: ✭ 21 (-60.38%)
Mutual labels:  phaser
vim snake
Classical multiplayer snake game with Vim-style keybinding
Stars: ✭ 16 (-69.81%)
Mutual labels:  phaser
phaser-typescript-webpack
Another Phaser CE boilerplate using TypeScript and Webpack.
Stars: ✭ 17 (-67.92%)
Mutual labels:  phaser
create-component-lib
Create a library of React components that can be published to npm
Stars: ✭ 84 (+58.49%)
Mutual labels:  zero-configuration
phaser3-webpack-es6-dev-starter
Development set up for Phaser 3, Webpack, and ES6.
Stars: ✭ 44 (-16.98%)
Mutual labels:  phaser
cmany
Easily batch-build cmake projects!
Stars: ✭ 15 (-71.7%)
Mutual labels:  build-tools
phaser-webpack-loader
Asset loader for Phaser + Webpack.
Stars: ✭ 85 (+60.38%)
Mutual labels:  phaser
PrinceJS
Prince of Persia reimplementation written in HTML5 / Javascript (MS-DOS Version)
Stars: ✭ 767 (+1347.17%)
Mutual labels:  phaser
infrared
✨🚀 Blazing fast, inferred static type checker for JavaScript.
Stars: ✭ 46 (-13.21%)
Mutual labels:  zero-configuration
ChowPhaser
Phaser effect based loosely on the Schulte Compact Phasing 'A'
Stars: ✭ 51 (-3.77%)
Mutual labels:  phaser

Phaser CLI

JavaScript Style Guide Build Status

Create Phaser projects with no build configuration.

Getting Started

Prerequisites

In order to use Phaser CLI you need to have Node.js (>= 6) installed.

Quickstart

Run the following commands to install Phaser CLI and create a new project. This will create a new folder matching the specified project-name and will generate all the required files.

Currently the only boilerplate available to use is TypeScript, but this may change in the future.

npm install -g @phaser-cli/cli
# or
yarn global add @phaser-cli/cli

phaser create <project-name>

Running in Development

Running the following command will serve your project to localhost:8080.

npm start

If you wish to change the host or the port of the dev server you can prepend the command with HOST=127.0.0.1 or PORT=3000, replacing the example values with your own.

Building for Production

The following command will build your game for production, bundling code and assets into the /build directory.

npm run build

Ejecting

You also have the option to eject from phaser-cli allowing you to customise webpack and other config to your heart's content. This is not recommended unless you really need to change something.

Note: You will no longer receive updates through the @phaser-cli/scripts package if you choose to eject.

npm run eject

Acknowledgements

Phaser CLI is based on Create React App by Facebook and vue-cli by Evan You.

Phaser is created by Richard Davey.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].