Giter Club home page Giter Club logo

docs-sdk-nodejs's Introduction

Couchbase Node.js SDK Documentation

This repository hosts the documentation source for the Couchbase Node.js SDK.

Contributing

Check out our contributing guide to learn how to:

  • submit a bug or feedback issue

  • set up your documentation workspace

  • build the documentation

  • submit a pull request

Thank you for helping to make the documentation better.

Docs Component Configuration

This repository contains an Antora docs component. Keep in mind these key repository features:

  • Component name, version, and start page are configured in each branch’s antora.yml file.

  • The navigation for all of the modules is stored in the ROOT module’s nav.adoc file.

  • Production branches use the release/X.Y naming pattern (e.g., release/5.5, release/6.0).

    • The docs site playbook instructs Antora to automatically aggregate any branch names that start with release/.

Documentation Site Toolchain

The documentation source files are marked up with AsciiDoc. Once merged into a version branch, the source files and their assets are aggregated, converted to HTML, and published by Antora to our staging and production sites. The docs components and site UI are orchestrated by the docs site playbook. See the contributing guide to learn more.

docs-sdk-nodejs's People

Contributors

acanguven avatar amarantha-k avatar av25242 avatar brett19 avatar cb-docs-robot avatar cgingrich-ce avatar dependabot[bot] avatar ejscribner avatar httpjunkie avatar ingenthr avatar l0n3star avatar maria-robobug avatar matt-woz avatar mikereiche avatar mojavelinux avatar osfameron avatar rahimrahman avatar richardsmedley avatar simon-dew avatar thejcfactor avatar tom-rosewell avatar tonyjhillman avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docs-sdk-nodejs's Issues

bucket.viewQuery should be async in the documentation

The docs for querying views shows this :
var result = bucket.viewQuery('beers', 'by_name', { range: { start: 'A' }, limit: 10, })

shouldn't be :
var result = await bucket.viewQuery('beers', 'by_name', { range: { start: 'A' }, limit: 10, })
?

first parameter of .arrayAppend must be a valid path or an empty sting

Hi,
seems there is an error in doc - passing false as a first parameter gives "path mismatch" error

await collection.mutateIn("my_array", [
couchbase.MutateInSpec.arrayAppend(false, "", "elem1", "elem2", "elem3"),
]);
// the document my_array is now ['some_element', 'elem1', 'elem2', 'elem3']

Server version:
Enterprise Edition 6.6.0 build 7909
SDK: NodeSDK 3.1.2

Typo Error in Sub-Document Page

I was going through the documentation and try the examples given. I found an error in the Sub-Document Page of Documentation.
The issue was in part:

var result = await collecton.LookupIn('customer123', [
couchbase.LookupInSpec.exists('purchases.pending[-1]')
]);
console.log('Path exists? ', result.content[0]);

which should be like below

var result = await collection.lookupIn('customer123', [
couchbase.LookupInSpec.exists('purchases.pending[-1]')
]);
console.log('Path exists? ', result.content[0]);

That means:
collecton.LookupIn -> collection.lookupIn

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.