GithubHelp home page GithubHelp logo

ether / etherpad-lite Goto Github PK

View Code? Open in Web Editor NEW
15.8K 354.0 2.8K 37.58 MB

Etherpad: A modern really-real-time collaborative document editor.

Home Page: http://docs.etherpad.org/

License: Apache License 2.0

Shell 1.15% JavaScript 55.67% CSS 3.94% HTML 2.98% Batchfile 0.06% Dockerfile 0.19% NSIS 0.06% TypeScript 35.96%
etherpad collaboration web-editor documents collaborative collaborative-editing collaborative-framework collaborative-writing collaborative-research document

etherpad-lite's Introduction

Etherpad: A real-time collaborative editor for the web

Demo Etherpad Animated Jif

About

Etherpad is a real-time collaborative editor scalable to thousands of simultaneous real time users. It provides full data export capabilities, and runs on your server, under your control.

Try it out

Wikimedia provide a public Etherpad instance for you to Try Etherpad out. or use another public Etherpad instance to see other features

Project Status

We're looking for maintainers and have some funding available. Please contact John McLear if you can help.

Code Quality

Code Quality

Testing

Backend tests Simulated Load Rate Limit Docker file Frontend admin tests powered by Sauce Labs Frontend tests powered by Sauce Labs Sauce Test Status Windows Build

Engagement

Docker Pulls Discord Etherpad plugins Languages Translation Coverage

Installation

Requirements

Node.js >= 18.18.2.

GNU/Linux and other UNIX-like systems

Quick install on Debian/Ubuntu

Install the latest Node.js LTS per official install instructions, then:

git clone --branch master https://github.com/ether/etherpad-lite.git &&
cd etherpad-lite &&
bin/run.sh

Manual install

You'll need Git and Node.js installed.

As any user (we recommend creating a separate user called etherpad):

  1. Move to a folder where you want to install Etherpad.
  2. Clone the Git repository: git clone --branch master https://github.com/ether/etherpad-lite.git
  3. Change into the new directory containing the cloned source code: cd etherpad-lite
  4. Run bin/run.sh and open http://127.0.0.1:9001 in your browser.

To update to the latest released version, execute git pull origin. The next start with bin/run.sh will update the dependencies.

Windows

Prebuilt Windows package

This package runs on any Windows machine. You can perform a manual installation via git for development purposes, but as this uses symlinks which performs unreliably on Windows, please stick to the prebuilt package if possible.

  1. Download the latest Windows package
  2. Extract the folder

Run start.bat and open http://localhost:9001 in your browser.

Manually install on Windows

You'll need Node.js and (optionally, though recommended) git.

  1. Grab the source, either:
  2. With a "Run as administrator" command prompt execute bin\installOnWindows.bat

Now, run start.bat and open http://localhost:9001 in your browser.

Update to the latest version with git pull origin, then run bin\installOnWindows.bat, again.

If cloning to a subdirectory within another project, you may need to do the following:

  1. Start the server manually (e.g. node src/node/server.ts)
  2. Edit the db filename in settings.json to the relative directory with the file (e.g. application/lib/etherpad-lite/var/dirty.db)
  3. Add auto-generated files to the main project .gitignore

Docker container

Find here information on running Etherpad in a container.

Plugins

Etherpad is very customizable through plugins.

Basic install

Full Features

Available Plugins

For a list of available plugins, see the plugins site.

Plugin Installation

You can install plugins from the admin web interface (e.g., http://127.0.0.1:9001/admin/plugins).

Alternatively, you can install plugins from the command line:

cd /path/to/etherpad-lite
pnpm run install-plugins ep_${plugin_name}

Also see the plugin wiki article.

Suggested Plugins

Run the following command in your Etherpad folder to get all of the features visible in the above demo gif:

pnpm run install-plugins \
  ep_align \
  ep_comments_page \
  ep_embedded_hyperlinks2 \
  ep_font_color \
  ep_headings2 \
  ep_markdown \
  ep_webrtc

For user authentication, you are encouraged to run an OpenID Connect identity provider (OP) and install the following plugins:

  • ep_openid_connect to authenticate against your OP.
  • ep_guest to create a "guest" account that has limited access (e.g., read-only access).
  • ep_user_displayname to automatically populate each user's displayed name from your OP.
  • ep_stable_authorid so that each user's chosen color, display name, comment ownership, etc. is strongly linked to their account.

Next Steps

Tweak the settings

You can modify the settings in settings.json. If you need to handle multiple settings files, you can pass the path to a settings file to bin/run.sh using the -s|--settings option: this allows you to run multiple Etherpad instances from the same installation. Similarly, --credentials can be used to give a settings override file, --apikey to give a different APIKEY.txt file and --sessionkey to give a non-default SESSIONKEY.txt. Each configuration parameter can also be set via an environment variable, using the syntax "${ENV_VAR}" or "${ENV_VAR:default_value}". For details, refer to settings.json.template. Once you have access to your /admin section, settings can be modified through the web browser.

If you are planning to use Etherpad in a production environment, you should use a dedicated database such as mysql, since the dirtyDB database driver is only for testing and/or development purposes.

Secure your installation

If you have enabled authentication in users section in settings.json, it is a good security practice to store hashes instead of plain text passwords in that file. This is especially advised if you are running a production installation.

Please install ep_hash_auth plugin and configure it. If you prefer, ep_hash_auth also gives you the option of storing the users in a custom directory in the file system, without having to edit settings.json and restart Etherpad each time.

Customize the style with skin variants

Open http://127.0.0.1:9001/p/test#skinvariantsbuilder in your browser and start playing!

Skin Variant

Helpful resources

The wiki is your one-stop resource for Tutorials and How-to's.

Documentation can be found in doc/.

Development

Things you should know

You can debug Etherpad using bin/debugRun.sh.

You can run Etherpad quickly launching bin/fastRun.sh. It's convenient for developers and advanced users. Be aware that it will skip the dependencies update, so remember to run bin/installDeps.sh after installing a new dependency or upgrading version.

If you want to find out how Etherpad's Easysync works (the library that makes it really realtime), start with this PDF (complex, but worth reading).

Contributing

Read our Developer Guidelines

HTTP API

Etherpad is designed to be easily embeddable and provides a HTTP API that allows your web application to manage pads, users and groups. It is recommended to use the available client implementations in order to interact with this API.

OpenAPI (previously swagger) definitions for the API are exposed under /api/openapi.json.

jQuery plugin

There is a jQuery plugin that helps you to embed Pads into your website.

Plugin Framework

Etherpad offers a plugin framework, allowing you to easily add your own features. By default your Etherpad is extremely light-weight and it's up to you to customize your experience. Once you have Etherpad installed you should visit the plugin page and take control.

Translations / Localizations (i18n / l10n)

Etherpad comes with translations into all languages thanks to the team at TranslateWiki.

If you require translations in plugins please send pull request to each plugin individually.

FAQ

Visit the FAQ.

Get in touch

The official channel for contacting the development team is via the GitHub issues.

For responsible disclosure of vulnerabilities, please write a mail to the maintainers ([email protected] and [email protected]).

Join the official Etherpad Discord Channel.

License

Apache License v2

etherpad-lite's People

Contributors

anttiviljami avatar chocobozzz avatar cweider avatar dependabot[bot] avatar disy-mk avatar fourplusone avatar gared avatar hanspinckaers avatar ilmartyrk avatar jhollinger avatar johnmclear avatar joker-x avatar ldidry avatar lpagliari avatar luto avatar marcelklehr avatar muxator avatar nikerabbit avatar pita avatar raybellis avatar rhansen avatar samtv12345 avatar seballot avatar siebrand avatar snyk-bot avatar tiblu avatar tjwelde avatar translatewiki avatar webzwo0i avatar wikinaut avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

etherpad-lite's Issues

Security (aka pro)

Any kind of ability to lock it down, either against ldap or a custom user db would be appreciated, or even hooks where this could be done. Etherpad (and lite) are ideal tools for inside corporations. #feature

SQL Syntax Error

","attribs":"|5+6b*0|3+f*0+1i|2+2"},"pool":{"numToAttrib":{"0":["author","g.dwaq6frfo86x9nn7"]},"nextNum":1},"head":6}');
REPLACE INTO store VALUES ('pad:ubljku:revs:5', '{"changeset":"Z:6r>1i|8=6q*0+1i$Pita Poison's Blog  http://pitapoison.de/tag/piratiges","meta":{"author":"g.dwaq6frfo86x9nn7","timestamp":1305876618538}}');
REPLACE INTO store VALUES ('pad:ubljku:revs:6', '{"changeset":"Z:89>1|8=6q=1i|1+1$
","meta":{"author":"","timestamp":1305876618538}}');
- Hide quoted text -
END TRANSACTION;

/home/ep-lite/etherpad-lite/node_modules/ueberDB/dbWrapper.js:208
       if(err) throw err;
               ^
Error: SQLITE_ERROR: near "s": syntax error

Support Headings, etc.

One limitation that really limits etherpad for anything but really short, basic, texts, is the lack of support for headings (and related features that can build on it, like tables of content). Any chance that the fresh start can make it easier to add support for that?

Blockquotes would also be nice to have.

Add an init script

See title. A bare template:

#!/bin/bash
#
# Init file for the ep-lite server daemon
#
# chkconfig: 2345 20 20
# description: Starts an ep-lite server on port 9001
#
# processname: ep-lite

# Source function library.
. /etc/rc.d/init.d/functions

desc="ep-lite server"
prog="ep-lite"

# these can be overrode in /etc/sysconfig/ep-lite
LOGFILE=/opt/node/log/ep-lite.log
USER=node
GROUP=node
BINDIR=/opt/node/bin
PATH=$BINDIR:$PATH

if [ -r /etc/sysconfig/$prog ]; then
        source /etc/sysconfig/$prog
fi

start() {
        echo -n $"Starting $desc ($prog): "
        daemon --check=$prog ${BINDIR}/${prog} -l ${LOGFILE} -u ${USER} -g ${GROUP} -v -f
        RETVAL=$?
        echo
    [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$prog
        return $RETVAL
}

stop() {
        echo -n $"Stopping $desc ($prog): "
        killproc $prog                                               
        RETVAL=$?
        echo
    [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog
        return $RETVAL
}

restart() {
    stop
    start
}

case "$1" in
  start)
        start
    ;;
  stop)
        stop
        ;;
  restart)
        restart
        ;;
  condrestart)
    [ -e /var/lock/subsys/$prog ] && restart
        RETVAL=$?
        ;;
  status)
        status $prog
        RETVAL=$?
        ;;
  *)
        echo $"Usage: $0 {start|stop|restart|condrestart|status}"
        RETVAL=1
esac

exit $RETVAL

Import doesn't work on windows

It seems that abiword does not support the --plugin parameter in windows. According to the wiki:

"As of version 2.6, AbiCommand only works on Unix-like systems (not windows), however it doesn't require a running X11 system so it can be used in an headless server environment. "

http://abiword.com/wiki/AbiCommand

Don't use `fs.readFile` in `sendFile()` method

https://github.com/Pita/etherpad-lite/blob/master/node/server.js#L74

This is a bad idea because you're not sending any data to the request until the entire file is read. You could use the fs.createReadStream() and .pipe() APIs directly:

http://nodejs.org/docs/v0.4.7/api/fs.html#fs.createReadStream
http://nodejs.org/docs/v0.4.7/api/streams.html#stream.pipe

Or better yet, I would suggest using node-static instead. This is a battle-hardened static file server for node.js that we use everyday in production at Nodejitsu.

https://github.com/cloudhead/node-static

When abiword dies, the whole server dies

Someone managed to kill the test server on pad.pitapoison.de, it looks like he/she uploaded a PDF. The goal is to catch such problems

Abiword:
** (abiword:17082): WARNING **: Unknown property section type, treating it as USER

Abiword:
** (abiword:17082): CRITICAL **: msole_prop_parse: assertion `!(type & (unsigned)(~0x1fff))' failed

Fri, 22 Jul 2011 10:17:27 GMT: 200, POST /p/miketest/import

/home/ep-lite/etherpad-lite/node/ImportHandler.js:115
   if(err) throw err;
           ^
      0 | 05 d5 cd d5 9c 2e 1b 10 93 97 08 00 2b 2c 9f ae | ............+,..

Private and Pro Pads

A very useful feature in Etherpad is the possibility to create a team with a unique url (in case of etherpad a subdomain) and several logins for members. I think this feature is a important, because collaborative writing is useful for teams who works always together, not only for one time. So there is the option to collect all pads in a single overview and more...
A second, im my opinion a very import, thing is to keep the pad secret. Of course the id is not human readable but not really random.

If I have more time to investigate in this project i will try to build such a feature, but maybe another one has this wish too, so we can share work and ideas for a good concept. Better than the Pro Pads in Etherpad :-P

So far
0x46616c6b

widget-ify for integration into e.g. express

No idea what I'm talking about yet, but instead of running etherpad as an app, it would be interesting to architect it as a widget (with both client/server side) parts that can be integrated into some node.js framework as an 'app' whatever that would mean.

I'm posting this as an issue, as a request, but also somewhat of a heads-up and an RFC if I start developing in that direction.

BUG

/home/ep-lite/etherpad-lite/node/handler/PadMessageHandler.js:647
              delete author.timestamp;
              ^
TypeError: Cannot convert null to object
    at DELETE (native)
    at Object.callback (/home/ep-lite/etherpad-lite/node/handler/PadMessageHandler.js:647:15)
    at /home/ep-lite/etherpad-lite/node_modules/ueberDB/CloneAndAtomicLayer.js:100:17
    at /home/ep-lite/etherpad-lite/node_modules/ueberDB/CacheAndBufferLayer.js:168:7
    at /home/ep-lite/etherpad-lite/node_modules/ueberDB/mysql_db.js:80:5
    at Query. (/home/ep-lite/etherpad-lite/node_modules/ueberDB/node_modules/mysql/lib/mysql/client.js:117:11)
    at Query.emit (events.js:64:17)
    at Query._handlePacket (/home/ep-lite/etherpad-lite/node_modules/ueberDB/node_modules/mysql/lib/mysql/query.js:31:12)
    at Client._handlePacket (/home/ep-lite/etherpad-lite/node_modules/ueberDB/node_modules/mysql/lib/mysql/client.js:294:14)
    at Parser. (/home/ep-lite/etherpad-lite/node_modules/ueberDB/node_modules/mysql/lib/mysql/client.js:83:14)

Insecure content

Version: latest trunk

Steps that will reproduce the problem?

  1. Setup a proxy with https access (see wiki for a config template)
  2. Open https://etherpad.example.org/p/example

What is the expected result?
To see a usable page.

What happens instead?

Possible workaround:
Don't use SSL, if possible (not possible in my case).

Any additional information:
In the generated HTML (dynamic DOM tree) on line 12: "<script async="" src="http://etherpad.example.org:80/socket.io/jsonp-polling//1308683150156/0"></script>"

"Cannot GET /ep/support"

The link "let us know" within the text "If this continues to happen, please let us know (opens in new window)" is broken.

iframe keeps "Loading..." forever

Etherpad Lite works perfectly for me, but when I try to use it with an iframe, it keeps "Loading..." forever.

Here is the basic iFrame code:

<iframe src='http://pad.pitapoison.de/p/iframeprob' width=500 height=400>

What Firebug says:

Permission denied to access property 'document'
<!-- CSS --> 

This can be found in line 10 of the page source.

<!-- CSS -->
<link href="../static/css/pad.css" rel="stylesheet" type="text/css"/> 

I think it connects because I can use the chat and when I open the regular site (without iframe) it shows the iframe user is online.
Also because Firebug tells me that I'm (iframe) receiving data from someone else typing.

I think it gets stucked when trying to load the CSS or something like that, I don't know.

Thanks in advance,
Gustavo

Not able to find the subvalue colorId in null

Since I don't know how to reproduce it, feel free to close this issue again. The server stopped twice today with the following error:

Client 14786210702732205 disconnected

/opt/node/lib/node_modules/ep-lite/node/MessageHandler.js:86
    if(err) throw err;
            ^
Not able to find the subvalue colorId in null

Add shutdown.sh

You might want to add a shutdown.sh script. Here is a trivial example

#!/bin/bash
kill `ps waux|grep -i "node server.js"|grep -v grep|awk '{print $2}'`

Import fails sometimes...

/home/ep-lite/etherpad-lite/node/ImportHandler.js:144
   if(err) throw err;
           ^
convert /tmp/0dd1462268210a1f12e199f09b63db75.txt /tmp/eplite_import_9
49719378085.txt txt
AbiWord: could not open the file [/tmp/0dd1462268210a1f12e199f09b63db75.txt]
error -1
AbiWord:>

[WebSocket] SYNTAX_ERR: invalid url: wss://...

Might be related with #11 or an invalid server certificate. When opening a new/existing pad I receive the following error messages in the browser log and the GUI does not respond (Safari 5. and Chrome 13 are working fine):

Firefox 5:

[WebSocket] SYNTAX_ERR: invalid url: wss://proxy:/socket.io/flashsocket
console.error(decodeURIComponent(message));
socket.io.js (line 2190)
Error calling method on NPObject!
[Break On This Error] self.__id, url, protocols,...ll, proxyPort || 0, headers || null);
socket.io.js (line 1930)
Error calling method on NPObject!
[Break On This Error] WebSocket.__flash.close(this.__id);
socket.io.js (line 1969)

Opera 11.11:

[23. Mai 2011 23:35:12] JavaScript - https://proxy/p/ET1tpyJRS4
Unknown thread
[WebSocket] SYNTAX_ERR: invalid url: wss://proxy:/socket.io/flashsocket
[23. Mai 2011 23:35:16] JavaScript - https://proxy/p/ET1tpyJRS4
Timeout thread: delay 5000 ms
Uncaught exception: Error: Error in Actionscript. Use a try/catch block to find error.
Error thrown at line 1969, column 4 in () in https://proxy/socket.io/socket.io.js:
    WebSocket.__flash.close(this.__id);
called from line 794, column 21 in () in https://proxy/socket.io/socket.io.js:
    this.socket.close();
called from line 1613, column 4 in (soft) in https://proxy/socket.io/socket.io.js:
    this.transport.disconnect();
called from line 1569, column 12 in () in https://proxy/socket.io/socket.io.js:
    self.disconnect(true);

Sqlite doens't compile with old libraries

Didn't work in Debian Lenny and Ubuntu Lucid. The easiest way to solve the problem is to use a library that brings its own sqlite sources. node-sqlite does that, but doesn't support to do more than one command in a transaction - what makes it unusable slow doing write operations. The Library we're using at the moment wants to include the sources in the future, see here

Short: to solve this issue we can wait until node-sqlite3 brings the sources, or we wait until node-sqlite support transactions :/

Import works but with issues

Import of a 1 page word document (.doc) is successful but throws errors.

Using this pad:
http://pad.pitapoison.de/p/gyFAV059pM

I import a 1 page word document with text only. The import is successful and the document text is loaded in the pad. The loading indicator does not automatically disappear and eventually turns into:

"Import failed: Request timed out."

Support Opera in proxy mode

Opera 11.11 doesn't seem to send (but receive) updates when ep-lite is behind a proxy (see #11 and #14).

http://imageshack.us/photo/my-images/863/screenshot20110525at003.png

Unfortunately I cannot find any error message in any client/server log. After a while I get the GUI message "Disconnected. Server not responding. This may be due to ..." and after clicking on "Reconnect Now" it reconnects or I get the message "You have this Pad already opened in another Window/Tab".

Everything seems to work fine when connecting to the server with all browsers without a proxy.

Support proxy requests

Hi there,

I've the following setup tested:

  • Client <-> Server:9001

This is working quite well. For several reasons I've to use this setup:

  • Client <-> SSL-Proxyserver (Apache ProxyPass) <-> Server:9001

I can open the first page but there are several issues:

  1. The link https://proxy/newpad forwards to http://proxy/p/I8ZsAKR4Ug
  2. When opening https://proxy/p/I8ZsAKR4Ug I see the (unresponsive) GUI and in the browser console I see the following errors:
    1. XMLHttpRequest cannot load http://proxy/socket.io/xhr-polling/1306165174613. Origin https://proxy is not allowed by Access-Control-Allow-Origin.
    2. [blocked] The page at https://proxy/p/I8ZsAKR4Ug ran insecure content from http://proxy/socket.io/jsonp-polling//1306165179614/0.

Pad names containing a '?' cause a crash (MySQL only)

If a pad name contains a ? in the name, the wholes server crashes. SQLite isn't affected.
Also, if a name begins with a ?, the problem doesn't appear.

node.js:134
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: too few parameters given
at /home/ether/etherpad-lite/node_modules/ueberDB/node_modules/mysql/lib/mysql/client.js:160:13
at String.replace (native)
at Client.format (/home/ether/etherpad-lite/node_modules/ueberDB/node_modules/mysql/lib/mysql/client.js:158:13)
at Client.query (/home/ether/etherpad-lite/node_modules/ueberDB/node_modules/mysql/lib/mysql/client.js:92:16)
at [object Object].get (/home/ether/etherpad-lite/node_modules/ueberDB/mysql_db.js:72:11)
at [object Object].get (/home/ether/etherpad-lite/node_modules/ueberDB/dbWrapper.js:143:20)
at [object Object].get (/home/ether/etherpad-lite/node_modules/ueberDB/ueberDB.js:65:11)
at [object Object]. (/home/ether/etherpad-lite/node/Models/Pad.js:306:9)
at [object Object].init (/home/ether/etherpad-lite/node_modules/joose/lib/Task/Joose/Core.js:786:32)
at Object.getPad (/home/ether/etherpad-lite/node/PadManager.js:48:9)

Timeline: layout and NaN

Version: trunk
URL: https://pad.pitapoison.de/pad/p/1GN27CypwS/timeslider

Steps that will reproduce the problem?

  1. Open the above mentioned URL
  2. Click on play

What is the expected result?

  1. Content below "Version X..."
  2. Time information about the different versions

What happens instead?

  1. The content overwrite the first line (blue background)
  2. Time information render to NaN

Possible workaround:
Unknown.

Any additional information:
Tested with Firefox, Safari, Chrome. Not working with Opera.

CLIENT_READY Message let the server crash sometimes

Wed, 27 Jul 2011 11:21:03 GMT: message from 6936695271747906958: {"component":"pad","type":"CLIENT_READY","padId":"IV9PEI2ItL","token":"t.rdeH8a28uuH4iieka0T0","protocolVersion":2}

node.js:134
       throw e; // process.nextTick error, or 'error' event on first tick
       ^
TypeError: Cannot set property 'timestamp' of null
   at /home/ep-lite/etherpad-lite/node_modules/ueberDB/dbWrapper.js:266:41
   at /home/ep-lite/etherpad-lite/node_modules/async/lib/async.js:484:34
   at Array. (/home/ep-lite/etherpad-lite/node_modules/async/lib/async.js:408:34)
   at EventEmitter._tickCallback (node.js:126:26)

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.