https://github.com/mondaycom/monday-sdk-js
Node.js and JavaScript SDK for developing over the monday.com platform
https://github.com/mondaycom/monday-sdk-js
hacktoberfest javascript monday nodejs sdk
Last synced: 6 months ago
JSON representation
Node.js and JavaScript SDK for developing over the monday.com platform
- Host: GitHub
- URL: https://github.com/mondaycom/monday-sdk-js
- Owner: mondaycom
- License: mit
- Created: 2019-08-30T21:32:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-06T06:37:21.000Z (6 months ago)
- Last Synced: 2025-04-06T07:29:48.536Z (6 months ago)
- Topics: hacktoberfest, javascript, monday, nodejs, sdk
- Language: JavaScript
- Homepage: https://monday.com
- Size: 892 KB
- Stars: 90
- Watchers: 11
- Forks: 41
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# monday.com Apps framework SDK for JavaScript
[](https://github.com/mondaycom/monday-sdk-js/blob/master/LICENSE) [](https://www.npmjs.com/package/monday-sdk-js) [](https://www.npmjs.com/package/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 logicThe 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 `` 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">```
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)