A functional JavaScript Framework for building user interfaces
-
Functional - Declare functions that return components
-
Modular - Share functions across applications
-
DRY and Reusable - Psydux apps do not contain one line of HTML
Create and develop apps with the psydux cli
npm install --save psydux
import { el, render } from 'psydux'
const h1 = text => el('h1', () => text)
render(
h1('Hello, World!')
)
Psydux is Modern JavaScript framework for building web applications with reusable functions.
The easiest way get started using the Psydux JavaScript framework is to install the command line interface. Install node first if you have not already.