mirror of
https://codeberg.org/emersion/gamja.git
synced 2025-05-13 06:41:07 -04:00
A simple IRC web client
As of Chrome 108 and Firefox 133, when the virtual keyboard appears on a mobile device, the default behavior changed from resizing both visual and layout viewports to resizing just the visual viewport to match the behavior of Safari iOS. https://developer.chrome.com/blog/viewport-resize-behavior/ https://github.com/bramus/viewport-resize-behavior/blob/main/explainer.md Supported in Chrome 108+ and Firefox 133+, but not in Safari yet: https://chromestatus.com/feature/6145225857171456 https://bugzilla.mozilla.org/show_bug.cgi?id=1831649 https://bugs.webkit.org/show_bug.cgi?id=259770 |
||
---|---|---|
components | ||
doc | ||
lib | ||
.build.yml | ||
.editorconfig | ||
.gitignore | ||
commands.js | ||
dev-server.js | ||
eslint.config.js | ||
index.html | ||
keybindings.js | ||
LICENSE | ||
main.js | ||
manifest.json | ||
package-lock.json | ||
package.json | ||
README.md | ||
state.js | ||
store.js | ||
style.css |
gamja
A simple IRC web client.

Usage
Requires an IRC WebSocket server.
First install dependencies:
npm install --omit=dev
Then configure an HTTP server to serve the gamja files.
Development server
If you don't have an IRC WebSocket server at hand, gamja's development server can be used. For instance, to run gamja on Libera Chat:
npm install --include=dev
npm start -- irc.libera.chat
See npm start -- -h
for a list of options.
Production build
Optionally, Parcel can be used to build a minified version of gamja.
npm install --include=dev
npm run build
Configuration
gamja can be configured via a configuration file and via URL parameters.
Contributing
Send patches on Codeberg, report bugs on the issue tracker. Discuss in #soju on Libera Chat.
License
AGPLv3, see LICENSE.
Copyright (C) 2020 The gamja Contributors