1.0.4 • Published 4 months ago

code-sandbox-live v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
4 months ago

中文

code-sandbox-live

A React code sandbox in the browser. Useful for component library documentation, code execution, React playgrounds, and more.

Comparison with Similar Products

  • Maintains consistency with React's mechanisms, ensuring that lifecycle methods and hooks work as expected.

  • Strong extensibility, with support for custom transforms.

  • Supports both inline and mounted modes.

  • The most concise code.

Usage

pnpm add @swc/wasm-web code-sandbox-live
import { LivePreview, LiveProvider, useLiveContext } from 'code-sandbox-live';
// Requirements for the Editor component, implement an editable container. For example: MirrorCode, vscode, etc.
import Editor from '../Editor'

const Live = useMemo(() => {
      let node;
      try {
          node = !showView ? <Editor /> : <LivePreview />;
      } catch (err) {
          node = <Editor />;
      }
      return (
          <LiveProvider
              code={value}
              scope={{
                  ...scope,
                  data: props,
              }}
          >
              <Error />
              {node}
          </LiveProvider>
      );
  }, [props, value, showView]);

Using SWC as the Default Transformer, with Support for Custom Bundlers.

import { setDrive } from 'code-sandbox-live';
setDrive((code: string) => {
  return _transform(code, {
    transforms: ['jsx', 'typescript', 'imports'],
    production: true,
  }).code.substring(13); // remove leading `"use strict";`
});

Default configurations can be inspected with TypeScript types, and custom configurations are supported.

import { changeTransform } from 'code-sandbox-live';
import { merge } from 'lodash';
import { transform as _transform } from 'sucrase';
// Set custom compilation rules for components
changeTransform((config) => {
  return merge(
    {
      jsc: {
        transform: {
          react: { development: process.env.NODE_ENV === 'development' },
        },
      },
    },
    config
  );
});

Inline and Mounted Modes

  • Inline mode: Integrates seamlessly into the current React app.

  • Mounted mode: Mounted under a separate DOM container, allowing multiple React instances to run on the same page.

<LiveProvider code={value} alone={true}...

Roadmap

  • A code sandbox with automatic npm dependency importation.
1.0.4

4 months ago

1.0.3

4 months ago