/logic-simulator

상태머신 스타터 탬플릿

Primary LanguageTypeScriptMIT LicenseMIT

Create Logic Simulator

This CLI tool provides a template for state-machine-based applications built on xstate, statelyai/inspect, msw. Using this tool allows you to skip tedious setup processes and start developing your desired application immediately.

Usage

Interactive

You can create projects interactively by running:

npm create logic-simulator
# or
yarn create logic-simulator
# or
pnpm create logic-simulator

Then follow the prompts

Non-interactive

You can use template option (available options: vanilla-js, vanilla-ts, react-js, react-ts)

npm create logic-simulator@latest <project-directory> -- --template react-ts
# or
yarn create logic-simulator <project-directory> --template react-ts
# or
pnpm create logic-simulator <project-directory> --template react-ts