pane

0.0.10 • Public • Published

Information

Packagepane
Description Cross-platform WebKit binding
Node Version >= 0.6.14

Pane allows you to spawn and manipulate webkit windows asynchronously from node. Want to write a desktop app or game in node and HTML5? Use pane!

Installation

To install pane, use npm:

$ npm install pane

Dependencies

A full installer for each OS will be available soon.

Ubuntu

$ sudo apt-get install -y libqtwebkit-dev

OSX

$ brew install qt

Arch Linux

$ sudo pacman -S qtwebkit

Usage

Pane = require 'pane'
 
opt =
  title: 'Test'
  height: 500
  width: 500
  html: 'Hello world!'
 
window = new Pane opt
 
window.on 'open', -> console.log 'opened!'
window.on 'close', -> process.exit()
window.on 'console', (msg, line, file) -> console.log msg, line, file
 
window.open()
 
window.execute 'console.log("test2");'
window.move 500, 100
window.html 'i moved!'
window.title 'new title heyooo'
console.log window.execute 'document.location.href'
 
window.screenshot 'test.png'

Examples

wat

You can view further examples in the example folder.

LICENSE

(MIT License)

Copyright (c) 2011 Fractal contact@wearefractal.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i pane

Weekly Downloads

1

Version

0.0.10

License

none

Last publish

Collaborators

  • fractal
  • yocontra