Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tajo/ladle

🥄 Develop, test and document your React story components faster.
https://github.com/tajo/ladle

components documentation esbuild javascript playground react stories styleguide testing typescript ui vitejs

Last synced: about 1 month ago
JSON representation

🥄 Develop, test and document your React story components faster.

Awesome Lists containing this project

README

        



Ladle logo




npm package
build status
discord chat
twitter profile
homepage
stackblitz



![Ladle BaseWeb](https://raw.githubusercontent.com/tajo/ladle/main/packages/website/static/img/ladle-baseweb.png)

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

- [Documentation](https://www.ladle.dev)
- [Demo](https://baseweb.design/ladle)
- [Twitter](https://twitter.com/ladlejs)
- [StackBlitz](https://ladle.dev/new)
- [Discord](https://discord.gg/H6FSHjyW7e)

## Quick start

```bash
mkdir my-ladle
cd my-ladle
pnpm init
pnpm add @ladle/react react react-dom
mkdir src
echo "export const World = () =>

Hey

;" > src/hello.stories.tsx
pnpm ladle serve
```

with yarn

```bash
mkdir my-ladle
cd my-ladle
yarn init --yes
yarn add @ladle/react react react-dom
mkdir src
echo "export const World = () =>

Hey

;" > src/hello.stories.tsx
yarn ladle serve
```

with npm

```bash
mkdir my-ladle
cd my-ladle
npm init --yes
npm install @ladle/react react react-dom
mkdir src
echo "export const World = () =>

Hey

;" > src/hello.stories.tsx
npx ladle serve
```