Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
google-proto-files
Advanced tools
The google-proto-files npm package provides access to Google's Protocol Buffers (protobuf) files. These files define the structure of data used by Google's APIs and services. By using this package, developers can easily integrate with Google's APIs by leveraging the predefined protobuf files.
Accessing Google Protobuf Files
This feature allows you to access the path to Google's protobuf files. The code sample demonstrates how to require the google-proto-files package and retrieve the path to a specific protobuf file, in this case, 'timestamp.proto'.
const protoFiles = require('google-proto-files');
const path = protoFiles('google/protobuf/timestamp.proto');
console.log(path);
Integrating with Google APIs
This feature demonstrates how to integrate with Google APIs using the protobuf files provided by google-proto-files. The code sample shows how to load the 'cloud_speech.proto' file and create a gRPC client for the Google Cloud Speech API.
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');
const protoFiles = require('google-proto-files');
const packageDefinition = protoLoader.loadSync(protoFiles('google/cloud/speech/v1/cloud_speech.proto'), {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true
});
const speechProto = grpc.loadPackageDefinition(packageDefinition).google.cloud.speech.v1;
const client = new speechProto.SpeechClient({
// Client configuration
});
console.log(client);
The @grpc/proto-loader package is used to load .proto files for use with gRPC in Node.js. It provides similar functionality to google-proto-files in terms of loading protobuf files, but it does not specifically provide access to Google's predefined protobuf files. Instead, it is a more general-purpose loader for any .proto files.
The protobufjs package is a comprehensive library for working with Protocol Buffers in JavaScript. It allows you to define, encode, decode, and verify protobuf messages. While it does not provide direct access to Google's protobuf files, it offers a wide range of features for working with protobufs in general.
Get a copy of the googleapis proto files into your project
$ npm install --save google-proto-files
var protoFiles = require('google-proto-files')
protoFiles('logging', 'v2')
// node_modules/google-proto-files/google/logging/v2
protoFiles.pubsub.v1
// node_modules/google-proto-files/google/pubsub/v1/pubsub.proto
FAQs
All of the Google API's protocol buffer files
The npm package google-proto-files receives a total of 152,284 weekly downloads. As such, google-proto-files popularity was classified as popular.
We found that google-proto-files demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.