ircd-js === A simple IRCd project to provide an IRCd. Installing dependencies === ```bash # Installing docker on (latest) Ubuntu sudo apt-get install docker.io ``` Running === Staring a NodeJS container: ```bash docker run -v $PWD:/app --workdir /app -p 127.0.0.1:6667:6667 --rm -it node:10 /bin/bash ``` Commands to run inside the container: ```bash # Install all dev dependencies npm install # Run mocha tests npm test # Start the index.js node index.js ```