0.1.10 • Published 5 years ago

@jswf/core v0.1.10

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@jswf/core -- javascript window framework

Front end framework JavaScript Window Framework (npm module version)

screen

screenshot

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-server

Sample

import {FrameWindow} as JWF from '@jswf/core'

addEventListener("DOMContentLoaded", ()=>{
  const win = new FrameWindow();
  win.setTitle('SampleWindow') ;
  win.setPos();
});

License