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

jibe

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jibe

Jibe: be in accord; agree. A modern, lightweight, collaborative editing environment

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

jibe

Jibe: be in accord; agree.

A modern, lightweight, collaborative editing environment.

npm version Build Status

Jibe Demo

Installation

  • npm install
  • npm start
  • Go to http://localhost:3000

Database setup

Jibe requires RethinkDB for data persistance.

If you do not have a RethinkDB server available, you can easily install it locally or use the Docker image:

docker pull rethinkdb
docker run -d -p 8080:8080 -p 28015:28015 -p 29015:29015 rethinkdb

Now, browse to RethinkDB's Tables tab and create a new database called 'jibe'.

Integrating with your application via npm

  • npm install --save VisionistInc/jibe

  • Require jibe within your express app.

      var app = require('express')(),
          server = require('http').createServer(app),
          io = require('socket.io').listen(server),
          jibe = require('jibe')();
    
      // initialize jibe
      app.use('/path/to/jibe', jibe.router(io));
      app.use(jibe.browserChannelMiddleware);
    
      server.listen (3000, function () {
          console.info ('Server listening at port 3000');
      });
    
  • Visit http://localhost:3000/path/to/jibe!

Configuration

Server

When jibe is require-ed, it is possible to pass in configuration options for connecting to RethinkDB. For example, the snippet below will tell jibe to use the given configuration.

jibe = require('jibe')({
  config: {
    "rethinkdb": {
      "host": "127.0.0.1",
      "port": 28015,
      "db": "jibe"
    }
  }
});

If no options are provided, jibe will use one of the configurations in lib/config/env based on the process.env.NODE_ENV environment variable.

Client

Currently, the client-side constructor offers a few configuration options. Defaults are provided for each option, so none are required.

$('#jibe-container').jibe ({
  defaultText: "# Welcome to {{room}}\n\n\n",
  placeholder: "This is a configurable placeholder, type your text here...",
  template: "templates/editor.html"
});
  • The defaultText option sets the initial text for a document that does not exist at the time it is requested by the client. The name of the current room will replace all instances of the pattern {{room}}.
  • Overriding the placeholder option sets the text that is displayed when the document contains no text (just like the HTML input element's placeholder attribute).
  • The template option allows developers to use a different layout, rather than the default one that is provided in this repository. There are some hardcoded ids that event handlers rely on, so it is easiest to start from the provided template and rearrange things from there.

Keywords

FAQs

Package last updated on 06 Aug 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc