Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mikeabrahamsen/Flask-Meld

Flask-Meld is a library to provide server rendered templates over websockets for Flask applications to build reactive components without Javascript
https://github.com/mikeabrahamsen/Flask-Meld

flask python

Last synced: 2 days ago
JSON representation

Flask-Meld is a library to provide server rendered templates over websockets for Flask applications to build reactive components without Javascript

Awesome Lists containing this project

README

        

# Flask-Meld

Official Website - [Flask-Meld.dev](https://www.flask-meld.dev)

Project inspiration (outdated examples) - [Ditch Javascript Frameworks For Pure Python Joy](https://michaelabrahamsen.com/posts/flask-meld-ditch-javascript-frameworks-for-pure-python-joy/)

Join the community on Discord - https://discord.gg/DMgSwwdahN

Meld is a framework for Flask to meld your frontend and backend code. What does
that mean? It means you can enjoy writing dynamic user interfaces in pure Python.

Less context switching.
No need to write javascript.
More fun!

# Flask-Meld Developer information

## Tests

### Installing test requirements

```sh
pip install -r tests/requirements.txt
playwright install
```

### Run with browser tests

```sh
# run tests
pytest

# to watch the browser tests
pytest --headed
```

### Run without browser tests

```sh
pytest --ignore=tests/browser
```