'use strict'; import { h, html, render } from './preact.min.js'; const X = function () { return html`

ABOUT US

Cesanta Software Ltd. is headquartered in Dublin, Republic of Ireland.

Our story roots back to 2004, when Mongoose Web Server Library development started.
As Mongoose Web Server grew in popularity and matured over the following years, in 2013 Cesanta was established to continue its development and provide support to our valued customers.

We are proud to have among our customers many Fortune 500 companies as well as medium and small size businesses. Security and quality of our solutions is a paramount for us and the fact that Mongoose Web Server is used by NASA aboard the International Space Station is the best confirmation to it.

Since 2013, Cesanta has expanded its product portfolio. We develop and distribute embedded software and hardware with focus on connected products and the Internet of Things.

`; }; const Y = function () { return html`

Among our products are:

  • Mongoose Web Server - an embedded web server and networking library
  • VCON.io - Arduino-compatible boards with built-in firmware OTA updates and management dashboard
  • mDash.net - an all-in-one IoT Platform
  • Mongoose OS - an operating system for low-power microcontrollers
  • mJS - an embedded JavaScript engine for C/C++

Our solutions are:

  • integrated into thousands of commercial products
  • deployed to hundreds of millions devices in production environments
`; }; const App = function (props) { return html`

Basic Embedded Filesystem demo

${h(X)}
${h(Y)}
`; }; window.onload = () => render(h(App), document.body);