0.1.7 • Published 2 years ago

showcase-core v0.1.7

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Showcase

中文说明

Quickly load Vue, React components via command line.

Features

  • Provide command line to quickly load Vue3 and React components running on the browser. No need to install any build tools and dependencies.
  • Built-in esbuild support.
  • Built-in styled-components as default css module support for react components.
  • Use Puppeteer to provide automatic rendering capability to output images.
  • Provides a flexible command line repl interface for event interaction.

Usage

  • Study Vue and React without Build Tools.
  • With command line parameters, generate images for automated UI testing.
  • The command line REPL interface allows event interaction and output of result data, which can be used in the OJ (OnlineJudge) platforms.

The command lines

> npm i -g showcase-core;
> showcase --input app.vue;

Visit http://localhost:3000

Arguments

argstypedetails
--inputstringThe component to rendered
--servedirstringHttp server root
--client.outputstringPuppeteer's snapshot filename
--client.replbooleanEnable REPL
--client.eventsstringSend events to puppeteer page
--client.delaynumberDelay milliseconds before take snapshot

NodeJS

Example

const Showcase = require('showcase-core');

const showcase = new Showcase({
  client: {
    output: './out.png',
    repl: true,
  },
  serverOptions: {
    servedir: 'test',
  },
});

showcase.showComponent({
  path: './test/my-component.jsx',
  open: true,
});

For Online Judger

Use REPL interface, for example:

//PREPEND BEGIN
const Showcase = require('showcase-core');

const content = `
//PREPEND END

//TEMPLATE BEGIN
//Add component code here...

//TEMPLATE END

//APPEND BEGIN
`.trim();

const showcase = new Showcase({
  silent: true,
  client: {
    repl: true,
  },
});

showcase.showComponent({
  content,
  open: true,
});
//APPEND END

In testcase files:

1.in

click button

1.out

The base64 image data...