@dirtycajunrice/klee
v1.0.6
Published
Unreal Engine Blueprint Visualizer for the Web
Maintainers
Readme
Klee
An Unreal Engine Blueprint visualizer for the web.
[!NOTE] This package has been forked from its original creator to support newer implementations and include a default react component
Install (New)
npm i @dirtycajunrice/kleeUsage
import { Blueprint } from "@dirtycajunrice/klee";
const myCode = `...`
export const MyComponent = () => {
return (
<Blueprint code={myCode} className="w-full h-40" />
)
}Build (Original)
To build a standalone minified JavaScript file of the original klee you have to install the development dependencies:
npm installAs soon as the dependencies are installed you can run the following command to build a minified JavaScript file.
npm run build:originalYou can find the output at dist/klee.min.js relative to the root of the project directory.
Development setup
npm install
npm run dev