Nyxt is a Python framework inspired by Next.js, designed to enable seamless navigation and dynamic components.
- No-reload page transitions
- Dynamic components
- State management
- Go to releases and select latest one
- Click
Source Code (zip)
orSource Code (tar.gz)
and it will begin download - Unzip the downloaded file in your project folder
- Import nyxt into your main file:
import nyxt
import nyxt
router = nyxt.Router()
app = nyxt.createApp("Nyxt")
app.Import(["TailwindCSS"])
navcomponent = nyxt.createComponent("navbar")
navcomponent.content("<h1>This is navbar</h1>")
children = nyxt.getChildren()
app.layout([
navcomponent,
children
])
router.style.default()
app.style.title("Nyxt - The Python Backend Framework")
nyxt.Start(host="0.0.0.0", port="3000")
- Python 3.7+
- Flask
This project is licensed under the MIT License.