GithubHelp home page GithubHelp logo

lborsato / nodejs-mobile Goto Github PK

View Code? Open in Web Editor NEW

This project forked from janeasystems/nodejs-mobile

0.0 1.0 0.0 399.04 MB

Full-fledged Node.js on Android and iOS

Home Page: https://code.janeasystems.com/nodejs-mobile

License: Other

Makefile 0.30% Shell 0.29% JavaScript 51.79% R 0.04% HTML 1.04% C++ 29.19% Python 13.68% DTrace 0.24% C 2.83% Roff 0.07% Batchfile 0.26% Emacs Lisp 0.09% Perl 0.07% CMake 0.01% Java 0.04% Objective-C 0.03% Objective-C++ 0.01% Ruby 0.01%

nodejs-mobile's Introduction

Node.js for Mobile Apps

This is the main repository for Node.js for Mobile Apps, a toolkit for integrating Node.js into mobile applications.

Resources for Newcomers

This is the central repository for reporting all issues related to the Node.js for Mobile Apps project, including issues pertaining to the React Native and Cordova plugins.

The core library source code is in this repo. If you are looking for the source code for the plugins, you can find it at:

Project Goals

  1. To provide the fixes necessary to run Node.js on mobile operating systems.
  2. To investigate which features need to be added to Node.js in order to make it a useful tool for mobile app development.
  3. To diverge as little as possible from nodejs/node, while fulfilling goals (1) and (2).

Download

Binaries for Android and iOS are available at https://github.com/janeasystems/nodejs-mobile/releases.

Documentation

Documentation can be found on the project website. Sample code is available in the samples repo.

Disclaimer: documentation found in this repository is currently unchanged from the parent repository and may only be applicable to upstream node.

Build Instructions

Prerequisites to build the Android library on Linux Ubuntu/Debian:

Basic build tools:

sudo apt-get install -y build-essential git python

Install curl and unzip (needed to download the Android NDK):

sudo apt-get install -y curl unzip

Install Android NDK r21 for Linux:

Choose a location where you want to install the Android NDK and run:

curl https://dl.google.com/android/repository/android-ndk-r21-linux-x86_64.zip -o ndk.zip
unzip ndk.zip

It will create a android-ndk-r21 folder. Save that path for later.

Prerequisites to build the Android library on macOS:

Git:

Run git in a terminal window, it will show a prompt to install it if not already present. As an alternative, installing one of these will install git:

Install Android NDK r21 for macOS:

Choose a location where you want to install the Android NDK and run:

curl https://dl.google.com/android/repository/android-ndk-r21-darwin-x86_64.zip -o ndk.zip
unzip ndk.zip

It will create a android-ndk-r21 folder. Save that path for later.

Building the Android library on Linux or macOS:

1) Clone this repo and check out the mobile-master branch:

git clone https://github.com/janeasystems/nodejs-mobile
cd nodejs-mobile
git checkout mobile-master

2a) Using the Android helper script:

The tools/android_build.sh script takes as first argument the Android NDK path (in our case is ~/android-ndk-r21). The second argument is optional and is the target architecture, which can be one of the following: arm, x86, arm64 or x86_64. If no target architecture is provided, it will build all available architectures. Run:

./tools/android_build.sh ~/android-ndk-r21

When done, each built shared library will be placed in out_android/$(ARCHITECTURE)/libnode.so.

2b) Configure and build manually:

Run the android-configure script to configure the build with the path to the downloaded NDK and the desired target architecture.

source ./android-configure ../android-ndk-r21 arm

Start the build phase:

make

This will create the Android armeabi-v7a shared library in out/Release/lib.target/libnode.so.

Prerequisites to build the iOS .framework library on macOS:

Xcode 11 with Command Line Tools

Install Xcode 11 or higher, from the App Store, and then install the Command Line Tools by running the following command:

xcode-select --install

That installs git, as well.

CMake

To install CMake, you can use a package installer like Homebrew.

First, install HomeBrew, if you don't have it already.

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Then, use it to install CMake:

brew install cmake

Building the iOS library using CocoaPods:

Add this to your Podfile:

pod 'NodeMobile', :git => 'https://github.com/janeasystems/nodejs-mobile.git'

Building the iOS .framework library on macOS:

1) Clone this repo and check out the mobile-master branch:

git clone https://github.com/janeasystems/nodejs-mobile
cd nodejs-mobile
git checkout mobile-master

2) Run the helper script:

./tools/ios_framework_prepare.sh

That will configure gyp to build Node.js and its dependencies as static libraries for iOS on the arm64 and x64 architectures, using the v8 engine configured to start with JIT disabled. The script copies those libraries to tools/ios-framework/bin/arm64 and tools/ios-framework/bin/x64, respectively. It also merges them into static libraries that contain strips for both architectures, which will be placed in tools/ios-framework/bin and used by the tools/ios-framework/NodeMobile.xcodeproj Xcode project.

The helper script builds the tools/ios-framework/NodeMobile.xcodeproj Xcode project into three frameworks:

  • The framework to run on iOS devices: out_ios/Release-iphoneos/NodeMobile.framework
  • The framework to run on the iOS simulator: out_ios/Release-iphonesimulator/NodeMobile.framework
  • The universal framework, that runs on iOS devices and simulators: out_ios/Release-universal/NodeMobile.framework

While the universal framework is useful for faster Application development, due to supporting both iOS devices and simulators, frameworks containing simulator strips will not be accepted on the App Store. Before trying to submit your application, it would be advisable to use the Release-iphoneos/NodeMobile.framework in your submission archive or strip the x64 slices from the universal framework's binaries before submitting.

Running tests

Please see the TESTING.md file in the doc_mobile folder in this source distribution.

Contributing

Please see the CONTRIBUTING file in the doc_mobile folder in this source distribution.

nodejs-mobile's People

Contributors

ry avatar bnoordhuis avatar trott avatar isaacs avatar addaleax avatar cjihrig avatar indutny avatar bridgear avatar piscisaureus avatar jasnell avatar joyeecheung avatar danbev avatar targos avatar trevnorris avatar rvagg avatar mscdex avatar tjfontaine avatar vsemozhetbyt avatar sam-github avatar refack avatar shigeki avatar mylesborins avatar apapirovski avatar tniessen avatar tootallnate avatar fishrock123 avatar koichik avatar mhdawson avatar timothygu avatar evanlucas avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.