Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cfsghost/jsdx-toolkit

A graphical toolkit on JSDX framework. It aims to provide a node.js module for 3D user interface development.
https://github.com/cfsghost/jsdx-toolkit

Last synced: 3 days ago
JSON representation

A graphical toolkit on JSDX framework. It aims to provide a node.js module for 3D user interface development.

Awesome Lists containing this project

README

        

jsdx-toolkit
---
A graphical toolkit on JSDX framework. It aims to provide a node.js module for 3D user interface development.

Installation
-
* With Steps, you can get git version of JSDX toolkit:

1. Download source code from github

git clone tps://[email protected]/cfsghost/jsdx-toolkit.git

2. Change directory into folder

cd jsdx-toolkit

3. Configure and compile it

node-waf configure build

* The other way, you can install via NPM as well:

npm install jsdx-toolkit

Getting Started
-
It's the simple way to write a new application in Node.js:

var toolkit = require('jsdx-toolkit');

/* Create a new application */
var app = new toolkit.Application('JSDX Application');

/* Create a new window */
app.createWindow(function(window) {

/* Quit current application when this window is destroyed */
window.on(toolkit.EVENT_DESTROY, function() {
app.quit();
});

window.title = 'Application Window';
window.hasToolbar = true;
window.show();
});

app.run();

License
-
Licensed under the MIT License

Authors
-
Copyright(c) 2012 Fred Chien <>

Copyright
-
Copyright(c) 2012 Mandice Company.
(http://www.mandice.com/)