bedrock-topcube

1.0.0 • Public • Published

bedrock-topcube

A bedrock module that provides a native window for a bedrock Web application. It uses topcube to provide a GTK-based window with an embedded WebKit browser to display the application UI.

Please see topcube for installation instructions regarding any native library dependencies.

Quick Examples

npm install bedrock-topcube

Create a simple bedrock Web application with a native application window:

var bedrock = require('bedrock');
 
require('bedrock-server');
require('bedrock-topcube');
require('bedrock-express');
 
// default configuration
config.topcube.name = 'Bedrock';
config.topcube.width = 1024;
config.topcube.height = 768;
 
bedrock.events.on('bedrock-express.configure.routes', function(app) {
  app.get('/', function(req, res) {
    res.send('Hello World!');
  });
});
 
bedrock.start();

Configuration

For more documentation on configuration, see config.js.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    2
  • 0.0.1
    1

Package Sidebar

Install

npm i bedrock-topcube

Weekly Downloads

3

Version

1.0.0

License

none

Last publish

Collaborators

  • davidlehn
  • dlongley
  • mattcollier
  • msporny