https://github.com/ashryanbeats/monday-node
Monday.com API + Node.js: Example of simple authentication and query
https://github.com/ashryanbeats/monday-node
monday-api nodejs sample
Last synced: about 1 month ago
JSON representation
Monday.com API + Node.js: Example of simple authentication and query
- Host: GitHub
- URL: https://github.com/ashryanbeats/monday-node
- Owner: ashryanbeats
- Created: 2020-03-18T20:16:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-26T08:29:44.000Z (about 4 years ago)
- Last Synced: 2025-05-18T02:09:54.613Z (about 1 year ago)
- Topics: monday-api, nodejs, sample
- Language: JavaScript
- Size: 50.8 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Monday.com API + Node.js
Example of simple authentication and query.
See `index.js` and comments within.
## Set up and run
1. Clone the repo and `cd` into the project folder
1. Make a `.env` file
```
% touch .env
```
1. Add your [Monday.com API token](https://monday.com/developers/v2#authentication-section) in the `.env` file
```
MONDAY_TOKEN=your_key_goes_here
```
1. Install Node modules
```
% npm install
```
1. Run the script
```
% npm start
{
boards: [
{ id: '#########', name: 'Board name' },
{ id: '#########', name: 'Board name' },
{ id: '#########', name: 'Board name' },
{ id: '#########', name: 'Board name' },
{ id: '#########', name: 'Board name' }
]
}
```