- For now its only supports Windows.
Latest Download Packaged Version https://chatmc.io/dist/chatmc.zip
Clone and run for a quick way to see ChatMC in action.
git clone https://github.com/RKStudioTM/ChatMC
cd ChatMC
npm install
npm start
Use this app along with the Electron API Demos app for API code examples to help you get started.
A basic ChatMC application needs just these files:
package.json- Points to the app's main file and lists its details and dependencies.main.js- Starts the app and creates a browser window to render HTML. This is the app's main process.index.html- A web page to display. This is the app's Graphical User Interface.render.js- A script to read and render logfile to existance. This is the app's renderer process.
To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
# Clone this repository
git clone https://github.com/RKStudioTM/ChatMC
# Go into the repository
cd ChatMC
# Install dependencies
npm install
# Run the app
npm startNote: If you're using Linux Bash for Windows, see this guide or use node from the command prompt.
ELECTRON https://electronjs.org/