UNPKG

neft

Version:

Universal Platform

117 lines (85 loc) 2.8 kB
<img src="https://cdn.rawgit.com/Neft-io/neft/master/media/neft-white-full.svg" alt="Neft.io logo" width="256" /> ## Universal Platform <table> <tr> <th>Platform</th> <th>Code</th> <th>Views</th> <th>Styling</th> <th>Custom bindings</th> <th>Custom styling</th> </tr> <tr> <td>iOS</td> <td rowspan="5">JavaScript</td> <td rowspan="5">XML</td> <td rowspan="5">NML</td> <td>Swift / ObjC</td> <td>UIKit</td> </tr> <tr> <td>Android</td> <td>Java / C</td> <td>android.view</td> </tr> <tr> <td>Browser</td> <td rowspan="3">JavaScript</td> <td>HTML & CSS</td> </tr> <tr> <td>Browser WebGL</td> <td>Pixi.js</td> </tr> <tr> <td>Node</td> <td></td> </tr> </table> > `NML` - *Neft Marked Language* - Simple language used to describe styles, bindings and animations with [native controls](/extensions/native-items.html). ### What Neft does? 1. Runs your JavaScript code on [different platfoms](#everywhere). 2. Renders basic elements and native views through [extensions](/extensions.html). 3. Supports communication with native code. 4. Allows to write component-based views in XML and JavaScript. 5. Provides styling engine. ### What Neft does NOT? 1. Supports browser APIs. Neft is not a browser. 2. Understands CSS. Neft has his own [styling engine](/styles.html). CSS is too complex to implement on all native platforms. Instead you have more dynamic language but with less functionalities. ## Everywhere - Node >= 0.11.14, - Browsers (HTML5 or WebGL) IE >= 10, - Android >= 4.0.0, - iOS >= 8.0. ## Why Neft? ### One code for all Share code between a truly native application, website and a server. Neft uses high-level abstraction easily portable between different platforms. ### Virtual DOM DOM model powers native apps and websites in a better logic abstraction. Neft also renders on a server. ### Abstract styles CSS alternative for more dynamic and cross-platform apps. Automatically synchronized with DOM. With [native elements](/extensions/native-items.html). ## Installation ``` npm install -g neft ``` ## First app ``` neft create MyApp cd MyApp neft run node browser --watch ``` ... and play with `MyApp/views/index.html`. ## Android native app Specify your Android SDK path in `local.json` and run: ``` neft run android --watch ``` ## iOS native app Download XCode (8.1 or newer) on your Mac computer and run: ``` neft run ios --watch ``` ## No examples, tutorials, bad docs quality You can help with making Neft brilliant. [Contribute](/contribute.html). Always create an issue if something doesn't work or can be improved. *Neft is ours ;)*