Skip to content

mdudzak/teamwork-chat-electron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Teamwork chat - Linux version

This is a minimal app based on Electron, which uses a webview to show a web version of Teamwork Chat.

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.
  • browser.html - A web page to render. This is the app's renderer process.
  • browser.js - Browser specific functions.

How to run app

# Clone repo and enter dir
# Install dependencies
npm install
# Run the app
npm start

Electron documentation.

PACKAGING

App use a electron-builder for building and packaging Electron app.

For building a linux version, specify build options in package.json :

"build": {
    "appId": "sk.creanet.teamworkchat",
    "linux": {
      "target": "deb"
    }
  },

and run :

npm run dist

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published