@uiw/react-run-web
v2.0.0
Published
Online Code Editor for Rapid Web Development.
Downloads
16
Readme
Run Web
Online Code Editor for Rapid Web Development, Preview Demo.
Install
npm install @uiw/react-run-web
Usage
import RunWeb from '@uiw/react-run-web';
<RunWeb
css="div {color:red;}"
js="console.log('hello world!')"
html="<div>hello world!</div>"
/>
Props
interface RunWebProps extends React.IframeHTMLAttributes<HTMLIFrameElement> {
css?: string;
js?: string;
html?: string;
title?: string;
head?: React.ReactNode;
}
Online Code Preview
https://uiwjs.github.io/react-run-web#/?html=...&js=...&css=...
Development
Runs the project in development mode.
# Step 1, run first, listen to the component compile and output the .js file
# listen for compilation output type .d.ts file
npm run watch
# Step 2, development mode, listen to compile preview website instance
npm run start
production
Builds the app for production to the build folder.
npm run build
The build is minified and the filenames include the hashes. Your app is ready to be deployed!