5.6.0 • Published 6 years ago

windows-window-node-plugin v5.6.0

Weekly downloads
32
License
ISC
Repository
github
Last release
6 years ago

Windows window node plugin

node plugin to create desktop windows for windows os

basic example

let Repeater = require('function-repeater');
let {Window} = require('../src/index');

let window = new Window();
window.makeWindow();
window.setGeometry(100, 100, 250, 40);
window.setLines(2, 20);
window.show();
window.setLine(0, "hi there !!");

let i = 0;
let increment = new Repeater(
    () => window.setLine(1, "" + i++),
    1000, true);

new Repeater(
    update => {
        window.update();
        if (!window.hasWindow) {
            increment.stop();
            update.stop();
        }
    }, 5, true);
5.6.0

6 years ago

5.5.0

6 years ago

5.3.0

6 years ago

5.2.0

6 years ago

5.1.0

6 years ago

5.0.0

6 years ago

4.5.0

6 years ago

4.3.0

6 years ago

4.2.0

6 years ago

4.1.0

6 years ago

4.0.0

6 years ago

3.4.0

6 years ago

3.3.0

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.8.0

6 years ago

2.4.0

6 years ago

2.2.0

6 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago