@dirtycajunrice/klee
v1.0.5
Published
Unreal Engine Blueprint Visualizer for the Web
Downloads
2,778
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/klee
Usage
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 install
As soon as the dependencies are installed you can run the following command to build a minified JavaScript file.
npm run build:original
You can find the output at dist/klee.min.js
relative to the root of the project directory.
Development setup
npm install
npm run dev