Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marvinjanssen/lumio
Lumio is a reactive visual programming IDE for Clarity. It allows you to program Clarity smart contracts using drag and drop.
https://github.com/marvinjanssen/lumio
blockstack clarity svelte
Last synced: about 24 hours ago
JSON representation
Lumio is a reactive visual programming IDE for Clarity. It allows you to program Clarity smart contracts using drag and drop.
- Host: GitHub
- URL: https://github.com/marvinjanssen/lumio
- Owner: MarvinJanssen
- License: mit
- Created: 2020-06-24T19:57:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T10:16:24.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T18:04:04.582Z (7 months ago)
- Topics: blockstack, clarity, svelte
- Language: JavaScript
- Homepage: https://lumio.app
- Size: 2.81 MB
- Stars: 17
- Watchers: 4
- Forks: 3
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lumio
![Animation](animation.gif)
[Lumio](https://lumio.app) is a reactive visual programming IDE for [Clarity](https://clarity-lang.org/). It allows you to program Clarity smart contracts using drag and drop. It is reactive in the sense that it keeps track of custom definitions and updates those in place in real time. It also features inline help for all built-in keywords and functions, and custom ones in the future.
You can try it out on https://lumio.app.
Clarity code is represented by symbol objects and these are validated and transpiled by the Lumio transpiler. It is still possible to generate invalid code with Lumio. It currently does not insert placeholders when placing custom functions, for example. However, it features [Clarity REPL](https://github.com/lgalabru/clarity-repl) support to analyse the generated code.
This is a submission for the Clarity tooling hackathon.
## Install
1. Clone this repository.
2. `cd lumio`.
3. `npm install`.
4. `npm run dev` to run the [development server](http://localhost:5000) or `npm run build` to build.Run tests with `npm test`.
You can generate docs using `npm run jsdoc` (install jsdoc using `npm install -g jsdoc`).
## Clarity REPL
Lumio offers basic support for the [Clarity REPL](https://github.com/lgalabru/clarity-repl) to analyse your smart contracts. A build script is included to fetch, build, and place the WASM in the right directory. You will need to have [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and [Rust](https://www.rust-lang.org/tools/install) installed in order to build the REPL. You will also need to install `wasm-pack` using cargo. ( `cargo install wasm-pack`.)
Building the WASM:
```
npm run build:repl
```The build script assumes the URL of the [Clarity REPL git repository]((https://github.com/lgalabru/clarity-repl)), you can override this by passing a different URL as a parameter:
```
npm run build:repl
```The build script will not automatically rebuild the WASM if it detects it in the build directory. Manually delete the file or execute the clean command:
```
npm run clean:repl
```## To-dos:
- Blockstack login to save and load your smart contracts.
- Add custom symbol support to the validator and transpiler.
- Interactive tutorial.
- Sample projects.