Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/cfsghost/jsdx-toolkit
- Owner: cfsghost
- License: mit
- Created: 2012-02-21T21:34:24.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-15T11:30:34.000Z (almost 12 years ago)
- Last Synced: 2024-04-24T16:04:44.337Z (7 months ago)
- Language: C++
- Homepage:
- Size: 1010 KB
- Stars: 43
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 LicenseAuthors
-
Copyright(c) 2012 Fred Chien <>Copyright
-
Copyright(c) 2012 Mandice Company.
(http://www.mandice.com/)