Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/s1n7ax/nvim-react

Reactive UI framework for neovim
https://github.com/s1n7ax/nvim-react

neovim nvim ui

Last synced: 11 days ago
JSON representation

Reactive UI framework for neovim

Lists

README

        

# nvim-react (:construction: WIP)

Reactive UI rendering framework for Neovim

## Features

- [x] Functional components
- [x] Signals (something like `useState` in [ReactJS][reactjs])
- [ ] Complex data stores (:construction: WIP)
- [ ] Lifecycle callbacks
- [ ] Keymap events
- [ ] Highlighting

## Development

Open the project

```bash
nvim -c "luafile dev/init.lua"
```

Try `w` keymap

### Run tests

:warning: Running tests requires [plenary.nvim][plenary] to be checked out in
the parent directory of _this_ repository :warning:

You can then run:

```bash
nvim \
--headless \
--noplugin \
-u tests/minimal.vim \
-c "PlenaryBustedDirectory tests/ {minimal_init = 'tests/minimal.vim'}"
```

Or if you want to run a single test file:

```bash
nvim \
--headless \
--noplugin \
-u tests/minimal.vim \
-c "PlenaryBustedDirectory tests/path_to_file.lua {minimal_init = 'tests/minimal.vim'}"
```

[plenary]: https://github.com/nvim-lua/plenary.nvim
[reactjs]: https://reactjs.org