We'd love to accept your sample apps and patches! Before we can take them, we have to jump a couple of legal hurdles.
Please fill out either the individual or corporate Contributor License Agreement (CLA).
- If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an individual CLA.
- If you work for a company that wants to allow you to contribute your work, then you'll need to sign a corporate CLA.
Follow either of the two links above to access the appropriate CLA and instructions for how to sign and return it. Once we receive it, we'll be able to accept your pull requests.
- Submit an issue describing your proposed change to the repo in question.
- The repo owner will respond to your issue promptly.
- If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
- Fork the desired repo, develop and test your code changes.
- Ensure that your code adheres to the existing style in the sample to which you are contributing.
- Ensure that your code has an appropriate set of unit tests which all pass.
- Submit a pull request!
-
You must install dependencies at the root of the
nodejs-docs-samples
directory. You can do so withyarn
ornpm
:npm install
or
yarn install
Note: Use
npm
oryarn
exclusively, don't mix them. -
In a terminal, start Redis:
redis-server
-
In another terminal, start
memcached
:memcached
-
In another terminal, run the unit tests from the root of the project:
npm test
or
yarn test
With code coverage:
npm run cover
or
yarn run cover
-
Then run the system tests from the root of the project:
npm run system-test
or
yarn run system-test
With code coverage:
npm run system-cover
or
yarn run system-cover
-
Or run all the tests at once:
npm run all-test
or
yarn run all-test
With code coverage:
npm run all-cover
or
yarn run all-cover
-
You must install dependencies at the root of the
nodejs-docs-samples
directory. You can do so withyarn
ornpm
:npm install
or
yarn install
-
Change directory to one of the sample folders, e.g.
bigquery
:cd bigquery/
-
Run the tests (check the
package.json
file):npm test
or
yarn test
or
npm run system-test
or
yarn run system-test
Samples in this repository follow the JavaScript Semi-Standard Style.
You can run npm run lint
to match our JavaScript coding standards.
/**
* Copyright 2017, Google, Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
function someMethod (someVariable) {
// [START some_region_tag]
// Imports the Google Cloud client library
const Library = require('@google-cloud/some-library');
// The something something, e.g. "some-value"
// const someVariable = "some-value";
// Instantiates a client
const library = Library();
// Does something
library
.someMethod(someVariable)
.then((results) => {
const someResults = results[0];
console.log('Results:');
someResults.forEach((result) => {
console.log(result);
});
})
.catch((err) => {
console.error('ERROR:', err);
});
// [END some_region_tag]
}
const cli = require('yargs')
.demand(1)
.command(
'someCommand <someVariable>',
'Does something.',
{},
(opts) => someMethod(opts.someVariable)
)
.example('node $0 someCommand someValue', 'Does something.')
.wrap(120)
.recommendCommands()
.epilogue(`For more information, see https://cloud.google.com/someProduct/docs`)
.help()
.strict();
if (module === require.main) {
cli.parse(process.argv.slice(2));
}