Code Monkey home page Code Monkey logo

triple's Introduction

Dev Dependency check

triple

REPL for Titanium. Inspired heavily by node.js's own repl.

demo

Features

  • Supports iOS simulator and Android emulator
  • Full access to Titanium API, including tab completion for Titanium namespaces
  • Command history (↑,↓)
  • Save and load REPL sessions
  • Add files and native Titanium modules to REPL
  • require() commonjs modules at runtime straight from the filesystem
  • Multi-line statements
  • Color-coded return values, by type
  • Much more coming (see enhancements)

Install NPM version

$ npm install -g triple

Usage

≫ triple -h

  Usage: triple [options] [file [delay]]

  Options:

    -h, --help                      output usage information
    -V, --version                   output the version number
    --clean                         re-create the triple titanium app
    -I, --ios-version <iosVersion>  select the ios version to use
    -m, --module <ids>              Add native module(s) to REPL
    -p, --platform <platform>       mobile platform for triple
    -v, --verbose                   Enable verbose output

  Examples:

    basic REPL
    $ triple
    [creating app]
    [loading app]
    > alert('hello, world!');

    load by file or url, with optional delay between lines
    $ triple /path/to/file.js
    $ triple http://bit.ly/1zc7Nvo
    $ triple /path/to/file.js 2000

    add native module(s) to REPL by id
    $ triple --module ti.paint
    $ triple --module some.module,another.module

triple commands

triple includes a few commands to control its operations. These must be preceded by the dot (.) to be recognized as commands.

.add [file ...]

Add file(s) to REPL at runtime.

$ triple
> .add /path/to/image.png
> var image = Ti.UI.createImageView({image:'image.png'});

.break

Abort a multi-line statement.

$ triple
> for (var i = 0; i < 100; i++) {
... // i want to stop this statement
... .break
>

.clear

Create a new execution context for the current REPL.

$ triple
> var foo = 123;
undefined
> foo
123
> .clear
> foo
ReferenceError: Can't find variable: foo
>

.exit

Exits the REPL.

$ triple
> .exit
$

.help

Shows command help in the REPL.

.load [delay]

Load a local or remote Javascript file line by line in to the REPL. A delay between each line of code's execution can be specified in milliseconds. If <file> is a directory, triple will attempt to load app.js then index.js from the directory.

$ triple
> .load ./app.js
> .load http://bit.ly/1zc7Nvo
> .load http://bit.ly/1zc7Nvo 2000

.save

Saves the current REPL session to a file. This file can be loaded in triple later with .load.

$ triple
> Ti.UI.createWindow({backgroundColor:'#a00'}).open();
undefined
> .save ./test.js

Support

triple has so far been developed and tested with the following OSes and mobile platforms:

  • iOS simulator & Android emulator
  • Mac OSX 10.9.4+
  • Titanium SDK 3.2.3+

Support for all of Appcelerator's supported platforms is planned. Windows OS support is planned as well.

Known Issues

Aside from the issues in this repo, here's some other known issues with Titanium that you might encounter when using triple.

  • [TIMOB-17449] - iOS: this.Kroll cannot be inspected, and throws errors when you try
  • [TIMOB-17448] - iOS: error when commonjs module exports certain types (anything other than function, object, or string). Fixed in Titanium 3.4.0.
  • [#82] - Android currently does not support local require() calls like iOS. This should be addressed in triple 0.4.0.

Contributors

Thanks to all the developers that have helped with triple so far!

 project  : triple
 repo age : 7 months
 active   : 47 days
 commits  : 259
 files    : 25
 authors  : 
   248  Tony Lukasavage         95.8%
     4  skypanther              1.5%
     2  jasonkneen              0.8%
     2  Jeff Haynie             0.8%
     1  Matt Apperson           0.4%
     1  Manuel Lehner           0.4%
     1  Fokke Zandbergen        0.4%

Also, honorable mention to @k0sukey for his initial work on Android support.

triple's People

Contributors

tonylukasavage avatar sophrinix avatar skypanther avatar fokkezb avatar jasonkneen avatar manumaticx 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.