Internal Tool Development on Tooljet

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Internal Tool Development on Tooljet
Simple
~3-5 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1215
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    852
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1043
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    823
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    815

Developing Internal Tools with Tooljet

Tooljet is an open-source low-code platform for building internal tools. Positioned as a more flexible Retool alternative with fully open source and self-hosted deployment.

Differences from Alternatives

Tooljet Appsmith Retool
Open-source Yes (AGPL) Yes (Apache) No
Self-hosted Yes Yes Paid
Mobile layout Yes Limited No
Built-in DB TooljetDB (PG) No No
Custom components React components JS components JS components

Installation

# Docker
docker run \
  -p 80:80 \
  -p 443:443 \
  -v tooljet_data:/var/lib/postgresql/13/main \
  tooljet/tooljet-ce:latest
# production docker-compose
services:
  tooljet:
    image: tooljet/tooljet-ce:EE-LTS-latest
    environment:
      TOOLJET_DB: tooljet_db
      TOOLJET_DB_USER: postgres
      TOOLJET_DB_PASS: password
      TOOLJET_DB_HOST: postgres
      SECRET_KEY_BASE: "your-secret-key-base"
      LOCKBOX_MASTER_KEY: "your-lockbox-key"
    ports:
      - "80:80"
    depends_on:
      - postgres

Components and Data

Tooljet works through a visual editor with drag-and-drop. Database/API queries are created in the "Query Manager" panel and bound to components via {{ queries.queryName.data }}.

// Tooljet RunJS Query
// Data validation and transformation
const users = queries.getUsers.data;

return users
  .filter(u => u.created_at > moment().subtract(30, 'days').toISOString())
  .map(u => ({
    ...u,
    fullName: `${u.first_name} ${u.last_name}`,
    registrationAge: moment(u.created_at).fromNow()
  }));

Mobile Layout

Tooljet supports a separate layout for mobile devices—you can create a version of the tool for managers on smartphones.

Custom React Components

// Custom component in Tooljet
function CustomComponent({ data, updateData, height, width }) {
  const [selected, setSelected] = useState(null);

  return (
    <div style={{ height, width }}>
      <CustomChart
        data={data.chartData}
        onSelect={(item) => {
          setSelected(item);
          updateData({ selectedItem: item });
        }}
      />
    </div>
  );
}

Timeline

Basic tool — 2–4 days. Complex with custom components — 1–2 weeks.