0.1.10 • Published 6 years ago
@jswf/core v0.1.10
@jswf/core -- javascript window framework
Front end framework JavaScript Window Framework (npm module version)
screen

link
target
- TypeScript+ES5(JavaScript)
- IE11 or later
history
- 2019/09/06 0.1.10 Fix Splitter
- 2019/08/23 0.1.09 Change package name
使い方
- install
npm i @jswf/core- install template
npx init-jwf- build sample
npx webpack- result file
dist/public/js/bundle.js- Confirm in browser
dist/public/index.html- Use server
npx webpack-dev-serverSample
import {FrameWindow} as JWF from '@jswf/core'
addEventListener("DOMContentLoaded", ()=>{
const win = new FrameWindow();
win.setTitle('SampleWindow') ;
win.setPos();
});