1.0.10 • Published 10 months ago

shouf v1.0.10

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

chouf

chouf is an environment to develop, test, and share your React components faster.

Features

  • Develop React components in isolation
  • Share your components with others
  • Test your components
  • Use your components in your projects
  • Use your components in your projects with Vite
  • Focus on doing things great with React

Demo

chouf []

Quick start

mkdir my-chouf
cd my-chouf
pnpm init
pnpm add @chouf/react react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.Choufs.jsx
pnpm chouf serve

with yarn

mkdir my-chouf
cd my-chouf
yarn init --yes
yarn add @chouf/react react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.Choufs.jsx
yarn chouf serve

with npm

mkdir my-chouf
cd my-chouf
npm init --yes
npm install @chouf/react react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.Choufs.jsx
npx chouf serve