![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@compassdigital/provider
Advanced tools
An easy way to get started building data providers for Compass Digital. Provides an easy interface for creating methods that will be called via JSON-RPC 2.0.
An easy way to get started building data providers for Compass Digital. Provides an easy interface for creating methods that will be called via JSON-RPC 2.0.
Includes a built-in HTTP server and AWS Lambda handler.
npm install @compassdigital/provider --save
var Provider = require("@compassdigital/provider");
var provider = new Provider({type: "menu"});
// Handle the 'get_menu' method
provider.on("get_menu", function(req, callback)
{
// Do something to get the result
your_function(req, function(err, res)
{
callback(err, res);
});
});
// Convenience method: respond to several methods using the same handler
provider.on(["get_menu", "get_menu_today"], () => {...});
Sometimes your handler needs to know the context of the method call e.g. the user's id, location, etc. This is accessible via promises from this.context().
For example:
provider.on('get_menu', function (req, callback) {
// Get the user's id
this.context()
.user()
.then(function (user_data) {
var user_id = user_data.id;
callback(err, { message: 'Your user id was ' + user_id });
});
});
// Start on port 3000
provider.start(3000);
// Stop server
provider.stop();
Create lambda.js ending with:
var provider = (module.exports = provider.lambda); //...
Configure a Lambda function with the setting Handler:
lambda.handler
KEY_ARN="SOME PRIVATE AWS KMS KEY ARN" node test
FAQs
An easy way to get started building data providers for Compass Digital. Provides an easy interface for creating methods that will be called via JSON-RPC 2.0.
The npm package @compassdigital/provider receives a total of 21 weekly downloads. As such, @compassdigital/provider popularity was classified as not popular.
We found that @compassdigital/provider demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 54 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.