Coder Social home page Coder Social logo

rails-console.js's Introduction

rails-console.js

Rails interface in Node.js via Rails console

NPM Version NPM Downloads License: MIT

โš™ Install

# npm
npm i rails-console

# yarn
yarn add rails-console

๐Ÿ” Usage

const { RailsConsole } = require('rails-console');

async run() {
  const rc = new RailsConsole();
  // Or:
  const rcWithOptions = new RailsConsole({
    cwd: path.resolve(__dirname, 'rails-app'), // Optionally specify directory where to start rails console
  });

  // Wait for the rails console process to start
  await rc.start();

  // Get application name
  const result = await rc.send('Rails.application.engine_name.gsub(/_application$/,"")');
  if (result.success) {
    console.log(`Name of the Rails app: ${result.returnValue}`);
  } else {
    console.log(`Command returned an error: ${result.error}`);
  }
  if (result.raw.stderr) {
    console.log(`Command output warnings: ${result.raw.stderr}`);
  }

  // Update an ActiveRecord item
  await rc.send('User.find(1).update(name: "First User")');

  // Stop the process
  rc.stop();
}

๏ธโค๏ธ Contributing

Every contribution is really welcome!

If you feel that something can be improved or should be fixed, feel free to open an issue with the feature or the bug found.

If you want to fork and open a pull request (adding features or fixes), feel free to do it.

Read the contributing guidelines

๐Ÿ“ƒ Licence

Read the licence

rails-console.js's People

Contributors

dolsem avatar

Watchers

 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.