AppJS is an SDK to develop desktop applications using Node.js melded with Chromium. With AppJS you can develop desktop tools and applications using the same libraries and knowledge used to build websites. You get all the following in one package:
- JS, HTML5, CSS, SVG, WebGL provided by Chromium
- mature http/https servers and client APIs - Node
- filesystem, dns, cryptography, subprocesses, OS APIs - Node
- sandboxed code execution environements virtual machines - Node
- tools for exposing native C++ bindings to JavaScript--APIs for authoring and the tools for compiling - Node
- Site: appjs.org
- Community: mailing list
AppJS is under heavy development. Expect many API changes and things to break.
The below packages include everything needed to get started with AppJS, including Node.js, all dependencies, binaries, and a launcher ready to go out of the box. 1.) Extract to a folder. 2.) Double click on launch. 3.) Hello World.
AppJS 0.0.13 Complete Distributables:
Be forewarned: due to the complex dependencies of AppJS, installation via npm is difficult and error prone.
You need to have node v0.8.x and node-gyp installed. After installing node, use the following command to install node-gyp:
$ sudo npm install node-gyp -g
Please take a look at node-gyp repository and make sure you have all required packages.
- Mac OS X: Currently 32bit node only,
$ node -e "console.log(process.arch)"
-> ia32 - Linux:
$ sudo apt-get install libgtk2.0-dev
- Windows: Windows SDK, DirectX SDK, and Visual C++ 2010
There is a complete example in the examples
folder.
var appjs = require('appjs');
var window;
// Initialize appjs.
var app = appjs.init();
// Called when page load finishes.
app.on("ready",function(){
console.log("Event Ready called");
// Runs a script in browser context.
window.runInBrowser(function(){
var body = document.body;
body.style.color="#f60";
});
// Show created window ( see below )
window.show();
});
// Routing:
// you can use a static router:
// app.use(app.staticRouter('./public'));
// or you can handle requests manually:
app.get("/",function(req,res,next){
res.send("\
<html>\
<head><title>Hello World</title></head>\
<body>Hello World</body>\
</html>\
")
});
// Creates a new window. Its invisible until window.show() get called.
// http://appjs/ is a special url. It is home for your application!
window = app.createWindow("http://appjs/",{autoResize:false});
( The MIT License )
Copyright (c) 2012 Morteza Milani and other AppJS contributors
See the LICENSE file for details.