@azure/cosmos has moved to a new repo https://github.com/Azure/azure-sdk-for-js
Перейти к файлу
Christopher Anderson b39694287f
TypeScript 3.0 and other random package updates (#89)
2018-07-31 12:39:09 -07:00
.vscode TypeScript 3.0 and other random package updates (#89) 2018-07-31 12:39:09 -07:00
samples Change all string enum properties to keyof typof enum properties (#86) 2018-07-31 11:59:16 -07:00
src Bump to version 2.0.0-3 and update changelog (#88) 2018-07-31 12:25:49 -07:00
.editorConfig Added an editorConfig 2017-01-18 12:56:28 +01:00
.gitattributes adding .git* 2014-08-26 08:25:08 -07:00
.gitignore Feature/object model refactor (#26) 2018-06-29 16:51:57 -07:00
.npmignore Package info clean up (#12) 2018-06-29 14:27:23 -07:00
.prettierrc.json Add Prettier (#33) 2018-07-12 19:30:18 -04:00
.travis.yml Add Prettier (#33) 2018-07-12 19:30:18 -04:00
Contributing.md Node.js SDK Release 1.7.0 2016-04-26 13:21:42 -07:00
LICENSE TypeScript conversion (#3) 2018-06-04 14:03:49 -07:00
README.md Update samples to new OM (#79) 2018-07-30 16:39:34 -07:00
SDK + Samples Workspace.code-workspace TypeScript conversion (#3) 2018-06-04 14:03:49 -07:00
browser-test.js TypeScript conversion (#3) 2018-06-04 14:03:49 -07:00
changelog.md Bump to version 2.0.0-3 and update changelog (#88) 2018-07-31 12:25:49 -07:00
dev.md TypeScript conversion (#3) 2018-06-04 14:03:49 -07:00
karma.config.js TypeScript conversion (#3) 2018-06-04 14:03:49 -07:00
package-lock.json TypeScript 3.0 and other random package updates (#89) 2018-07-31 12:39:09 -07:00
package.json TypeScript 3.0 and other random package updates (#89) 2018-07-31 12:39:09 -07:00
tsconfig.json Update config to preserve comments (#69) 2018-07-25 16:14:31 -07:00
tslint.json Add Prettier (#33) 2018-07-12 19:30:18 -04:00
webpack.config.js TypeScript conversion (#3) 2018-06-04 14:03:49 -07:00

README.md

Microsoft Azure Cosmos JavaScript SDK

This project provides JavaScript & Node.js SDK library for SQL API of Azure Cosmos Database Service. This project also includes samples, tools, and utilities.

latest npm badge

import { CosmosClient } from "@azure/cosmos"

const endpoint = "[hostendpoint]";                     // Add your endpoint
const masterKey = "[database account masterkey]";  // Add the masterkey of the endpoint
const client = new CosmosClient({endpoint, auth: { masterKey }});

const databaseDefinition = { id: "sample database" };
const collectionDefinition = { id: "sample collection" };
const itemDefinition = { id: "hello world doc", content: "Hello World!" };

async function helloCosmos() {
    const { database: db } = await client.database.create(databaseDefinition);
    console.log('created db');

    const { container } = await db.container.create(collectionDefinition);
    console.log('created collection');

    const { body } = await container.items.create(documentDefinition);
    console.log('Created item with content: ', body.content);

    await db.delete();
    console.log("Deleted database");
});

helloCosmos().catch((err)=>{console.error(err)});

Installation

Prerequisites

Install Node.js and npm https://docs.npmjs.com/getting-started/installing-node

Node SDK can be consumed in two ways.

Install Core Module Published to NPM

The core module uses the callbacks model for responses, exposed through the DocumentClient

npm install @azure/cosmos

Prerequisites

To use the SDK, first create an account and follow tutorial.

Note:

When connecting to the emulator from the SDK, SSL verification is disabled.

Follow these instructions to run the tests locally.

Tests

Prerequisites

  1. Clone Azure/azure-cosmos-js repository

    git clone https://github.com/azure/azure-cosmos-js.git
    
  2. Install Node.js and npm https://docs.npmjs.com/getting-started/installing-node

  3. Cosmos DB emulator

    • Note: requires a windows machine or ability to run Windows container
  4. Install dependencies

    npm i     # alias for npm install
    
  5. Build the source

    npm run build   # compiles the typescript source, runs linting, creates webpack, creates docs
    

Running the tests

npm run test    # runs all tests

Need Help?

Tweet us with #CosmosDB and we'll respond on Twitter. Be sure to check out the Microsoft Azure Developer Forums on MSDN or the Developer Forums on Stack Overflow if you have trouble with the provided code.

Contribute Code or Provide Feedback

If you would like to become an active contributor to this project please follow the instructions provided in Azure Projects Contribution Guidelines.

If you encounter any bugs with the library please file an issue in the Issues section of the project.