Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magynhard/ruby-nice
The nice javascript library to rubynize your javascript to be a happy programmer again.
https://github.com/magynhard/ruby-nice
Last synced: 3 days ago
JSON representation
The nice javascript library to rubynize your javascript to be a happy programmer again.
- Host: GitHub
- URL: https://github.com/magynhard/ruby-nice
- Owner: magynhard
- License: mit
- Created: 2022-05-06T10:48:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T16:07:28.000Z (4 months ago)
- Last Synced: 2024-09-22T15:17:09.891Z (about 2 months ago)
- Language: JavaScript
- Size: 198 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ruby-nice
[![npm package](https://img.shields.io/npm/v/ruby-nice?color=default&style=plastic&logo=npm&logoColor=red)](https://www.npmjs.com/package/ruby-nice)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/magynhard/ruby-nice?color=default&label=browser&logo=javascript&style=plastic)](https://github.com/magynhard/ruby-nice/releases)
![downloads](https://img.shields.io/npm/dt/ruby-nice?color=blue&style=plastic)
[![License: MIT](https://img.shields.io/badge/License-MIT-gold.svg?style=plastic&logo=mit)](LICENSE)> The nice javascript library to rubynize your javascript to be a happy programmer again.
This library is mainly intended for those who are familiar with programming
with Ruby and miss some convenience features in Javascript. It's time to be happy again!On the one hand it contains extensions and patches for core classes (e.g. String),
on the other hand it provides (extended) wrapper classes in Ruby style,
e.g. `File` with `File.write()`.It is available for the browser as well as for NodeJS.
Browser version might be behind npm version, if there were only node related updates, e.g. file system access.
Search terms:
```
ruby for javascript, ruby methods for javascript, ruby functions for javascript
```# Table of contents
* [Usage](#usage)
* [Installation](#installation)
* [NodeJS](#installation_node_js)
* [Browser](#installation_browser)
* [Documentation](#documentation)
* [Contributing](#contributing)## Usage
### JavaScript method naming of the Ruby ports
The javascript method names are ported to a javascript equivalent by the following rules and always written
in `camelCase`:| Description | Ruby code | JavaScript code |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|-------------------------------------------------|
| Question mark methods are ported to `isMethod` | `File.exist?`
`File.directory?` | `File.isExisting()`
`File.isDirectory()` |
| Getters are ported to getMethod `getMethod` | `File.basename` | `File.getBaseName()` |
| Verbs and transformation methods starting with 'to' are only ported to `camelCase` | `MyClass.destroy_object`
`MyClass.to_hash` | `MyClass.destroyObject()`
`MyClass.toHash()` |
| Loops should start with `for`, but they would collide with java script methods, e.g. forEach()
In cases of collissions, the orignal ruby name remains if possible. Some other cases have new names. | `[].each` / `[].each_with_index` | `[1,2,3].eachWithIndex()` |### Usage example
```js
// -- node js CommonJS --
require('ruby-nice/array'); // only monkey patch arrays
require('ruby-nice/string'); // only monkey patch strings
require('ruby-nice'); // requiring from 'ruby-nice' will implicitely load all monkey patches at once
const File = require('ruby-nice/file'); // load this ported ruby class only
// or named import (will also implicitely load all monkey patches)
const { File } = require('ruby-nice'); // load ported ruby class// -- node js ESM modules --
import { RubyNice } from 'ruby-nice'; // requiring from 'ruby-nice' will implicitely load all monkey patches at once
import { File } from 'ruby-nice'; // load ported ruby class (will also implicitely load all monkey patches)
import File from 'ruby-nice/file'; // load this ported ruby class only// -- browser --
// -- code samples --
"sample".capitalize() // capitalize a string
// => "Sample"
[1,2,3].getSample() // get random element of an Array
// => 3
// iterate array
['dog','house','mouse'].eachWithIndex((val, i) => {
console.log(i + ':' + val);
});
// => 0:dog
// => 1:house
// => 2:mouse// iterate object
{ peter: { role: "admin" }, sam: { role: "dev" } }.eachWithIndex((key, val, i) => {
console.log(key + " has the role: " + val.role);
});
// => peter has the role admin
// => sam has the role dev// write text file
File.write("/home/user/document.txt", "some content");// use map() on object
{ a: 1, b: 2}.mapObject((key, value, index) => {
return value;
})
// => [1,2]```
## Installation
### NodeJS
You can either use npm or yarn to install ruby-nice.
#### yarn
In your project root directory execute the following command:
```bash
yarn add ruby-nice
```### npm
In your project root directory execute the following command:
```bash
npm install ruby-nice
```### Browser
Download the latest [release on Github](https://github.com/magynhard/ruby-nice/releases) or the from the folder `dist` and put it in an appropriate folder of your project, e.g. `js/lib`
and reference it by a script tag in your project:```html
```
Optionally you may add the source file to your build pipeline, if you are using webpack, brunch or any other packager.
#### Bundle releases
As `ruby-nice` depends on [Typifier](https://github.com/magynhard/typifier), there is also a bundle release called `ruby-nice.bundle.js` where the latter is included. If you already use [Typifier](https://github.com/magynhard/typifier) separately, use the default version `ruby-nice.js` without included dependencies. If you don't know what you should use, use the bundled release!#### Minified releases
If you prefer minified builds, use the `*.min.js` version. Be aware that they do not contain any javascript documentation that may be very useful when working with a powerful IDE.## Documentation
### Feature set
* Tools
* Loops
* Classes
* [Array](doc/array.jsdoc.md)
* [Dir](doc/dir.jsdoc.md)
* [Env](doc/env.jsdoc.md)
* [File](doc/file.jsdoc.md)
* [FileUtils](doc/file-utils.jsdoc.md)
* [Number](doc/number.jsdoc.md)
* [Object](doc/object.jsdoc.md)
* [String](doc/string.jsdoc.md)
* [System](doc/system.jsdoc.md)## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/magynhard/ruby-nice. This project is intended
to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
the [Contributor Covenant](http://contributor-covenant.org) code of conduct.