ashryanbeats / monday-node

Monday.com API + Node.js: Example of simple authentication and query

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

  2. Make a .env file

    % touch .env
    
  3. Add your Monday.com API token in the .env file

    MONDAY_TOKEN=your_key_goes_here
    
  4. Install Node modules

    % npm install
    
  5. 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' }
        ]
    }
    

About

Monday.com API + Node.js: Example of simple authentication and query


Languages

Language:JavaScript 100.0%