Go to file
Jérémie Astori d8f1690904 Use Webpack configuration based on NODE_ENV instead of watch/no-watch
Also, move the `DedupePlugin` to the prod-specific section. [Webpack doc](https://webpack.github.io/docs/list-of-plugins.html#dedupeplugin) itself recommends to not run this outside of production.

Note that this currently breaks cross-OS support of `npm run build`. This will be fixed in a latter commit.
2017-01-10 13:07:27 -05:00
client Merge pull request #855 from MaxLeiter/MaxLeiter/search 2017-01-04 11:15:14 +00:00
defaults Option to log raw IRC traffic 2016-12-21 13:22:18 +02:00
scripts Enforce more eslint rules 2016-10-09 17:55:37 -04:00
src Make log style when referring user consistent with other places 2017-01-04 02:17:15 -05:00
test Add web server tests 2016-12-28 03:31:33 -05:00
.editorconfig Add .editorconfig 2015-10-26 03:03:12 +01:00
.eslintignore Webpack 2016-12-27 19:15:30 +02:00
.eslintrc.yml Webpack 2016-12-27 19:15:30 +02: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 Webpack 2016-12-27 19:15:30 +02:00
.nycrc Switch istanbul CLI to more recent nyc one 2016-12-29 02:51:26 -05:00
.stylelintrc Update developer dependencies 2016-09-25 14:53:03 +03:00
.travis.yml Add Node.js v7, current stable, to Travis CI 2016-12-16 02:02:48 -05:00
appveyor.yml Invalidate cache and use appveyor-retry with npm 2016-11-25 19:43:24 -08:00
CHANGELOG.md Add change log entry for upcoming v2.1.0 2016-10-17 00:49:48 -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 Use Webpack configuration based on NODE_ENV instead of watch/no-watch 2017-01-10 13:07:27 -05:00
README.md Simplify introduction on README 2016-12-11 04:14:17 -05:00
webpack.config.js Use Webpack configuration based on NODE_ENV instead of watch/no-watch 2017-01-10 13:07:27 -05: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 the development version of The Lounge:

git clone https://github.com/thelounge/lounge.git
cd lounge
npm install
npm start

A word of caution:

  • While it is the most recent codebase, this is not production-ready!
  • It is not recommended to run this as root. However, if you decide to do so, you will have to run npm run build.

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