web-portals
Version:
web-portals
24 lines (21 loc) • 402 B
Markdown
# Introduce
web-portals; 一个页面间管理框架;
## Install:
```bash
$ npm install pages-cook --save
```
## Start:
```ts
import { application } from 'pages-cook'
import homeConfig from './home/minify'
import testConfig from './test/minify'
// demo
application.setting({
modules: {
frameworks: frameworksConfig,
home: homeConfig,
test: testConfig
}
})
application.start()
```