spax
v0.2.0
Published
Single Page Application Extended
Downloads
9
Readme
SPAX
Framework for Single Page Application
Install
$ npm install spax
Usage
import { configure, use, run } from 'spax'
Webpack
...
module: {
rules: [
...
{
test: /\.ts$/,
// spax needs babel and ts
exclude: /node_modules[/\\](?!spax[/\\])/,
loader: 'babel-loader!ts-loader'
},
...
]
}
...