Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Files

Latest commit

2557cc8 · Jul 6, 2023

History

History

node-sdk

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 19, 2019
Sep 30, 2021
Apr 9, 2019
Apr 16, 2019
Jul 15, 2022
Apr 9, 2019
Apr 9, 2019
Apr 22, 2019
Apr 9, 2019
Jul 6, 2023
Jul 15, 2022
Apr 22, 2019
Apr 9, 2019

Kinvey NodeJS SDK

Installation

From the command prompt go to your app's root folder and execute:

npm i kinvey-node-sdk@next

Usage

Initialize SDK

We need to initialize the SDK.

JavaScript with NPM

var Kinvey = require('kinvey-node-sdk');

Kinvey.init({
  appKey: '<yourAppKey>',
  appSecret: '<yourAppSecret>'
});

Build

If you would like to build the SDK yourself, clone the monorepo, then:

  • npm i
  • npm run build

You can then install the SDK build by running npm i /<localpath>/packages/node-sdk