Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
forked fromnwjs/nw.js

Call all Node.js modules directly from DOM and enable a new way of writing applications with all Web technologies.

License

NotificationsYou must be signed in to change notification settings

sarvex/nw.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gitter
Official site:http://nwjs.io
Announcement

Introduction

NW.js is an app runtime based onChromium andnode.js. You canwrite native apps in HTML and JavaScript with NW.js. It also lets youcall Node.js modules directly from the DOM and enables a new way of writingnative applications with all Web technologies.

It was created in the Intel Open Source Technology Center.

Introduction to node-webkit (slides)
Creating Desktop Applications With node-webkit
WebApp to DesktopApp with node-webkit (slides)
Essay on the history and internals of the project

Features

  • Apps written in modern HTML5, CSS3, JS and WebGL.
  • Complete support forNode.js APIs and all itsthird party modules.
  • Good performance: Node and WebKit run in the same thread: Function calls are made straightforward; objects are in the same heap and can just reference each other;
  • Easy to package and distribute apps.
  • Available on Linux, Mac OS X and Windows

Downloads

###Demos and real appsYou may also be interested inour demos repository and theList of apps and companies using nw.js.

Quick Start

Createindex.html:

<!DOCTYPE html><html><head><title>Hello World!</title></head><body><h1>Hello World!</h1>    We are using node.js<script>document.write(process.version)</script>.</body></html>

Createpackage.json:

{"name":"nw-demo","main":"index.html"}

Run:

$ /path/to/nw.  (suppose the current directory contains'package.json')

Note: on Windows, you can drag the folder containingpackage.json tonw.exe to open it.

Note: on OSX, the executable binary is in a hidden directory within the .app file. To run node-webkit on OSX, type:

$ /path/to/node-webkit.app/Contents/MacOS/node-webkit.  (suppose the current directory contains'package.json')

Documents

For more information on how to write/package/run apps, see:

And ourWiki for much more.

Community

We use thegoogle group asour mailing list (use English only). Subscribe vianwjs-general+subscribe@googlegroups.com.

NOTE: Links to the old google group (e.g.https://groups.google.com/forum/#!msg/node-webkit/doRWZ07LgWQ/4fheV8FF8zsJ) that are no more working can be fixed by replacingnode-webkit withnwjs-general (e.ghttps://groups.google.com/forum/#!msg/nwjs-general/doRWZ07LgWQ/4fheV8FF8zsJ).

Issues are being tracked here on GitHub.

License

node-webkit's code in this repo uses the MIT license, see ourLICENSE file. To redistribute the binary, seeHow to package and distribute your apps

Sponsors

The work is being sponsored by:

About

Call all Node.js modules directly from DOM and enable a new way of writing applications with all Web technologies.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++61.7%
  • JavaScript21.6%
  • HTML8.2%
  • Objective-C++6.3%
  • Objective-C1.5%
  • CSS0.3%
  • Other0.4%

[8]ページ先頭

©2009-2025 Movatter.jp