crmuto aims to automate redundant and manual CRM tasks, while also establishing a standardized approach to handling CRM data across different systems. Our project streamlines processes, enhances efficiency, and promotes seamless data exchange between CRM platforms.
The first CRM that is partially supported is Brevo.
When using crmuto, all data is handled between your local computer and the CRM system via the API. No data is sent to any third party.
- Changed the way naming of deals are handled. Now the deal will have the name of the contact unless a the contact has no name, in which case the deal will be "New deal"
- Fixed retrieval of lists from Brevo
- Fixed bug related to creating deals (first occurrence after V0.6)
- Added new filter option for attributes (Not empty)
- Add contacts to lists
- Added filtering by attribute(s) (this filter requires that you also filter by list)
- Application code (app.ts) is prepared for multiple CRM systems
- Pipelines view added
- When creating deals, you now choose a pipeline and stage
- Bugfix: Contacts view now shows the correct total number of contacts
- Filter contacts by multiple lists (in or not in)
- Create deals for the filtered contacts
- Minor improvements:
- Context specific loading text (e.g. "Loading contacts" instead of "Creating deals")
- Better visuals for confirm and alert boxes
- Changed User interface to Contact
- Create deals automatically from lists
- Basic view of contacts
- Basic view of lists
The application consists of:
- A local proxy server that handles the communication with the CRM system.
- The proxy server is needed to avoid CORS issues. It can either be run via Electron or as standalone Node.js applicaiton.
- A local web server that serves the web application.
- The web application can either be served via Electron or via an express web server.
Make sure you have Node.js, npm, and TypeScript installed.
Installing TypeScript globally:
npm i -g typescript
npm i
npm run dev
Access the application via http://localhost:3000
Electron is a framework that allows you to build cross platform desktop applications using web technologies. It is based on Chromium and Node.js.
Why Electron?
Most CRM systems do not allow you to use the API directly from the browser due to CORS restrictions. Electron allows you to run a local proxy server that can communicate with the CRM system. The web application can then communicate with the proxy server without any CORS issues.
npm i
npm run electron
This mode reloads the Electron application when changes are made to the application
npm i
npm run electron-dev
npm i
npm run electron-build
The built application can be found in the dist
folder.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Currently the project is maintained by Daniel Lindegaard @ KUBO Robotics ApS. The company behind the KUBO robot and the revolutionary hands-on TagTile programming language.
This project is not affiliated with Brevo or any other CRM system.