KO
|
EN
gitlite — search
Search
#javascript
#dotfiles
#java
#ruby
#nodejs
#shell
#python
#php
#hacktoberfest
#c-plus-plus
#vim
#mantisbt-plugin
demoboard
★ 83
Open GitHub ↗
Demoboard live code editor
Download README (.md)
Explore Similar Repositories
dbt-sqlite
:
A SQLite adapter plugin for dbt (data build tool)
redoc
:
Redoc with multiple urls - https://hub.docker.com/r/volbrene/redoc
java-spring-template
:
Java Spring template for the AsyncAPI Generator
FSharp.CosmosDb
:
An F# wrapper around Cosmos DB's .NET SDK to make it more friendly for F# developers
StructPacker
:
Low-level, lightweight and performance-focused serializer for C# struct types that uses Source Generators technology.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
demoboard
?
Download (.md)
Demoboard ========= An embeddable live editor, with every package on npm. Getting Started --------------- Demoboard can be embedded within any app built with Webpack -- including apps built with Create React App, Gatsby, Next.js, etc. ```bash yarn add @frontarm/demoboard ``` ```js import React from 'react' import { Demoboard, DemoboardGlobalStyles } from '@frontarm/demoboard' const initialSources = { '/index.js': ` import React from 'react@experimental' import ReactDOM from 'react-dom@experimental' const root = ReactDOM.createRoot( document.getElementById('root') ) root.render(<h1>Hello, world!</h1>)`, } const App = () => { return ( <> <DemoboardGlobalStyles /> <Demoboard config={{ initialSources, initialGeneratedTabs: ['/index.html'], }} id="demoboard" /> </> ) } ``` Contributing ------------ ```bash yarn install yarn build cd examples yarn start ```