New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

raptor-lang

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

raptor-lang

Raptor is an experimental functional programming language implemented in JavaScript.

latest
Source
npmnpm
Version
0.4.0
Version published
Maintainers
1
Created
Source

Raptor Lang

An experimental, interpreted programming language implemented in JavaScript.

Originally made for use in the Velociraptor Escape part of the HackMIT 2016 puzzle.

Usage

Raptor is on npm. Use it as follows:

// 'std' indicates which built-in library to use
var raptor = require('raptor-lang')('std');

// required Raptor source code
var program = `
logYear {
  foo = 200
  log -> 10*foo + 16
}
logYear
return 1618
`;

// optional limits on the code complexity / compute time
var limits = {code: 100, compute: 1000};

// optional way to accumulate execution statistics
var stats = {};

// side effects:
// * console.log's 2016
// * stats = {astSize: 18, statement: 5, time: 2, ...}
// * result = 1618
var result = raptor.interpret(program, limits, stats);

Syntax

[WIP]

License

MIT License: http://igliu.mit-license.org/

Keywords

programming languages

FAQs

Package last updated on 28 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts