New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-rcade

Package Overview
Dependencies
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-rcade

A CLI tool to generate a new rcade project

latest
Source
npmnpm
Version
0.0.42
Version published
Weekly downloads
7
-75%
Maintainers
2
Weekly downloads
 
Created
Source

create-rcade

Scaffold a new RCade game in seconds.

Quick Start

npm create rcade@latest

That's it! Follow the prompts and you'll have a fully configured game project ready to deploy to the RCade arcade cabinet.

What You Get

Running create-rcade sets up:

  • A game project with your chosen template (JS, TS, or Rust)
  • Build tooling pre-configured (Vite or Trunk)
  • GitHub Actions workflow for automatic deployment
  • rcade.manifest.json with your game metadata
  • Git repository initialized and ready to push

Interactive Prompts

? Enter game identifier (e.g. my-game): space-blaster
? Enter display name: Space Blaster
? Enter game description: An epic space shooter
? Game visibility: Public (Everyone can play!)
? Versioning: Automatic (version is incremented every push)
? Starting template: Vanilla (JavaScript)
? Package manager: npm

Visibility Options

OptionWho Can Play
PublicEveryone
InternalRecursers and people at the Hub
PrivateOnly you (great for development)

Templates

TemplateTech StackBest For
Vanilla JSVite + JavaScriptQuick prototypes
Vanilla TSVite + TypeScriptType-safe development
Vanilla RustTrunk + WASMPerformance-critical games

After Creation

cd my-game
npm run dev      # Start local dev server

When you're ready to deploy:

git remote add origin git@github.com:you/my-game.git
git push -u origin main

GitHub Actions automatically builds and deploys your game to RCade!

Development

This package is a thin wrapper around the rcade CLI package.

Build

bun run build

FAQs

Package last updated on 27 Jan 2026

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