# monday-sdk-js

> [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mondaycom/monday-sdk-js/blob/master/LICENSE) &nbsp; [![npm version](https://img.shields.io/npm/v/monday-sdk-js.svg?style=flat)](https://www.npmjs.com/package/monday-

Latest version **1.0.0-beta** (published 2026-08-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install monday-sdk-js
pnpm add monday-sdk-js
yarn add monday-sdk-js
bun add monday-sdk-js
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; no vulnerabilities; recently updated; high maintenance score; high quality score.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 1.0.0-beta |
| Published | 2026-08-10 |
| First published | 2020-02-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 56.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 102 |
| Author | talharamati |
| Maintainers | alonbehaim, benymonday, liorrabin, monday-npm-publisher, shoshany, marekpe, benmamonday, shaikatzz, danielva, navele, mittelmania |

## Links

- npm: https://www.npmjs.com/package/monday-sdk-js
- Repository: https://github.com/mondaycom/monday-sdk-js
- Homepage: https://github.com/mondaycom/monday-sdk-js#readme
- Issues: https://github.com/mondaycom/monday-sdk-js/issues
- npm.io page: https://npm.io/package/monday-sdk-js

## Dependencies (1)

- [node-fetch](https://npm.io/package/node-fetch.md) ^2.6.0

## Recent versions

- 1.0.0-beta (latest) — 2026-08-10
- 0.5.9 — 2026-07-07
- 0.5.8 — 2026-03-05
- 0.5.7 — 2025-12-21
- 0.5.6 — 2024-11-25
- 0.5.5 — 2024-03-13
- 0.5.4 — 2024-02-07
- 0.5.3 — 2024-01-11
- 0.5.2 — 2023-12-03
- 0.5.1 — 2023-12-03
- 0.5.0 — 2023-12-03
- 0.4.12 — 2023-11-12
- 0.4.11 — 2023-09-04
- 0.4.10 — 2023-08-31
- 0.4.9 — 2023-08-17
- … 35 more at https://npm.io/package/monday-sdk-js/versions

## README

# monday.com Apps framework SDK for JavaScript
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mondaycom/monday-sdk-js/blob/master/LICENSE) &nbsp; [![npm version](https://img.shields.io/npm/v/monday-sdk-js.svg?style=flat)](https://www.npmjs.com/package/monday-sdk-js) &nbsp; [![npm](https://img.shields.io/npm/dm/monday-sdk-js)](https://www.npmjs.com/package/monday-sdk-js) &nbsp; [![jsDelivr hits (npm)](https://img.shields.io/jsdelivr/npm/hm/monday-sdk-js)](https://www.jsdelivr.com/package/npm/monday-sdk-js)

The monday.com SDK provides a toolset for application developers to build features and solutions on top of the monday.com Work OS platform. You'll find this SDK useful if you want to:

- Access monday.com account data from your application, by utilizing the GraphQL client
- Build Board Views & Dashboard Widgets that extend the monday.com UI
- Build Integrations & Automations using your own external services and business logic

The SDK contains methods for server-side and client-side application development. Client-side capabilities assume a valid user session is present (and can seamlessly act on behalf of that user), while server-side methods can be used to access monday.com features using explicit credentials but without any client-side code.

## Usage

### Using as an `npm` module
Install the SDK as a module:

`npm install monday-sdk-js --save`

Then import into your project:
```js
import mondaySdk from "monday-sdk-js";
const monday = mondaySdk();
```


### As a `<script>` tag directly in your HTML code
You can also load the SDK directly into your HTML code by adding:
```html
<head>
  <script src="https://cdn.jsdelivr.net/npm/monday-sdk-js/dist/main.js"></script>
</head>
```
and then initialize the SDK anywhere in the page by declaring:

```js
const monday = window.mondaySdk()
```

## Docs

To get started, check out the [SDK Documentation](https://developer.monday.com/apps/docs/introduction-to-the-sdk)

---
_Source: https://npm.io/package/monday-sdk-js · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
