New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ruby

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ruby

Helper methods from ruby ported to Node.

0.6.1
latest
Source
npm
Version published
Weekly downloads
6.6K
0.21%
Maintainers
1
Weekly downloads
 
Created
Source

Ruby-Node

Build Status

Helper methods from ruby ported to Node.

Ruby + Node

Getting Started

npm install ruby --save
let ruby = require('ruby');

let words = ruby.w('I am not throwing away my shot!');
words; // ['I', 'am', 'not', 'throwing', 'away', 'my', 'shot!']

ruby.puts(words);
// I
// am
// not
// throwing
// away
// my
// shot!
let ruby = require('ruby');
ruby.add_methods_to_string_prototype();

'stressed'.reverse; // 'desserts'

For more info, read the docs

Tests

npm t

Keywords

ruby

FAQs

Package last updated on 23 May 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