🛠️ Real-time, observable, Flow-based programming for React, Node.js and VS Code. Docs | Playground
A preliminary implementation is available under name 
ds-ext.
import '@data-story/ui/data-story.css';
import { DataStory } from '@data-story/ui'
export default function Home() {
  return (
    <main className="h-screen">
      <DataStory />
    </main>
  )
}yarn add @data-story/uiWhen you're writing tests in your local environment
# run component tests and then chose component test
yarn cy:open
# run e2e tests and then chose e2e test
yarn dev
yarn cy:open
# test on ci, only run @data-story/ui,  @data-story/core and e2e tests| name | description | 
|---|---|
build:xxx | 
Start a one-shot task to build artifacts | 
watch:xxx | 
Start a long running process that produce build artifacts | 
dev:xxx | 
Start a long running process that launch a dev server to accept incoming requests, e.g. webpack dev server, nodejs ds-server |