JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 117
  • Score
    100M100P100Q79634F
  • License MIT

A wrapper for creating RedwoodSDK starter projects

Package Exports

  • create-rwsdk
  • create-rwsdk/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-rwsdk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

create-rwsdk

A simple CLI wrapper for creating RedwoodSDK starter projects.

Installation

You can use this package directly with npx:

npx create-rwsdk my-project

Or install it globally:

npm install -g create-rwsdk
create-rwsdk my-project

Usage

create-rwsdk <project-name> [options]

Arguments

  • <project-name>: Name of the project directory to create (required)

Options

  • -f, --force: Force overwrite if directory exists
  • -h, --help: Display help information
  • -V, --version: Display version number

Examples

Create a new project:

create-rwsdk my-awesome-app

Force overwrite an existing directory:

create-rwsdk my-awesome-app --force

What it does

This tool is a simple wrapper around:

npx degit redwoodjs/sdk/starters/standard <project-name>

It provides a more user-friendly interface with helpful messages and error handling.

Next steps after creating a project

cd <project-name>
yarn install
yarn rw dev

License

MIT