Go to file
Jérémie Astori 30bf20eb12 Merge pull request #1064 from thelounge/xpaw/harden-sort
Rewrite server code of channel sorting
2017-04-23 14:12:53 -04:00
client Merge pull request #1054 from thelounge/astorije/friendly-date-marker 2017-04-23 10:24:21 +03:00
defaults Add CA bundle option in SSL 2017-04-15 19:12:21 +03:00
scripts Fix run_pr.sh script 2017-02-12 17:33:46 -05:00
src Merge pull request #1064 from thelounge/xpaw/harden-sort 2017-04-23 14:12:53 -04:00
test Use moment on the client to display friendly dates 2017-04-22 00:38:19 -04:00
.editorconfig Add .editorconfig 2015-10-26 03:03:12 +01:00
.eslintignore Webpack 2016-12-27 19:15:30 +02:00
.eslintrc.yml Setup ESLint to make sure an EOF feed is always present 2017-03-29 00:05:28 -04:00
.gitattributes Add gitattributes to normalize line endings 2016-01-24 16:12:08 +02:00
.gitignore Switch istanbul CLI to more recent nyc one 2016-12-29 02:51:26 -05:00
.npmignore Add nyc and Webpack config files to the files ignored when releasing 2017-01-31 21:20:35 -05:00
.nycrc Exclude Webpack config from coverage report 2017-04-19 01:19:11 -04:00
.stylelintrc Update deprecated options and rules 2017-02-02 19:13:05 -05:00
.travis.yml Add an extra Travis CI job to make sure production build succeeds and passes tests 2017-01-23 01:15:50 -05:00
appveyor.yml Do not build feature branch with open pull requests on AppVeyor 2017-04-22 16:04:18 +03:00
CHANGELOG.md Add changelog entry for v2.2.2 2017-03-13 01:27:57 -04:00
CONTRIBUTING.md Simplify a great deal the CONTRIBUTING file 2016-02-14 20:09:40 +00:00
index.js Enforce strict mode across all JS files with ESLint 2016-10-09 15:14:02 -04:00
LICENSE Update LICENSE notice to add ours on top of @erming and Shout 2016-02-10 06:20:05 +00:00
package.json Merge pull request #1070 from thelounge/greenkeeper/irc-framework-2.7.0 2017-04-23 11:46:27 -04:00
README.md Explain about lounge command in dev installations 2017-01-24 01:04:40 -08:00
webpack.config.js Use babel-preset-env 2017-04-23 10:58:02 +03:00

The Lounge

#thelounge IRC channel on freenode npm version Travis CI Build Status AppVeyor Build Status Dependencies Status Developer Dependencies Status

The Lounge is a modern web IRC client designed for self-hosting.

To learn more about configuration, usage and features of The Lounge, take a look at the website.

The Lounge is the official and community-managed fork of Shout, by Mattias Erming.

Installation and usage

The Lounge requires Node.js v4 or more recent.

Run this in a terminal to install (or upgrade) the latest stable release from npm:

[sudo] npm install -g thelounge

When installation is complete, run:

lounge start

For more information, read the documentation, wiki, or run:

lounge --help

Running from source

The following commands install and run the development version of The Lounge:

git clone https://github.com/thelounge/lounge.git
cd lounge
npm install
NODE_ENV=production npm run build
npm start

When installed like this, npm doesn't create a lounge executable. Use npm start -- <command> to run subcommands.

⚠️ While it is the most recent codebase, this is not production-ready! Run at your own risk. It is also not recommended to run this as root.

Development setup

Simply follow the instructions to run The Lounge from source above, on your own fork.

Before submitting any change, make sure to:

  • Read the Contributing instructions
  • Run npm test to execute linters and test suite
  • Run npm run build if you change or add anything in client/js/libs or client/views