wallace
v0.16.0
Published
An insanely small, fast, intuitive and extendable front-end framework
Readme
Wallace
This package contains the library for the Wallace framework, which you import into your source files:
import { mount } from 'wallace';
const MyComponent = () => <div>Hello world</div>;
mount('main', Component);It requires the babel-plugin-wallace to work, which is a dependency of this package, always at the same version.
Although you can install these packages with:
npm i wallace -DYou are better off creating an empty project with:
npx create-wallace-appAs that sets up your babel and webpack configurations for you.
For more detailed documentation see the Wallace repository on github.
