Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Native IOS app and node.js [closed]

Is it possible to create a native ios app with node.js, and is so does anyone have any examples?

like image 967
Hello World Avatar asked May 05 '12 15:05

Hello World


1 Answers

I search for this constantly, and although many of these answers are quite right in citing that V8 isn't iOS compatible, it seems that running a nodelike environment within iOS isn't all that impossible.

The first option I discovered was called "Neunode" (hasn't been updated in a year). Here are some reference links if you want more:

  • https://github.com/snakajima/neunode
  • http://www.neunode.com
  • https://www.youtube.com/watch?v=xzFH80-HYTo (httpserver example)

Nodelike / Node.app Project

Nodelike is the core framework of the Node.app project, which has the goal to implement a roughly Node.JS-compatible interface using JavaScriptCore.framework on iOS 7 and OS X Mavericks.

Example: Interpreter

an example project implementing a Node.JS interpreter as an iOS app, utilising the Nodelike framework.

Edit:

It is still "not viable for serious projects" but checkout updates at: https://github.com/node-app/Nodelike


Overall, The Node.app Project looks promising, be sure to checkout their website

like image 170
electblake Avatar answered Oct 03 '22 03:10

electblake