![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.
@graphile-contrib/pgdbi
Advanced tools
yarn add @graphile-contrib/pgdbi
Currently recommended for development only; to disable in production, do not load this plugin.
This is a PostGraphile Server Plugin so you can follow the standard server plugin instructions, namely:
For the CLI, use --plugins
to load the plugin (and remember this flag must come at the very start!)
postgraphile --plugins @graphile-contrib/pgdbis -c my_db
For PostGraphile as a library/middleware, you must use the plugin hook functionality:
const pgdbi = require('@graphile-contrib/pgdbi');
const { postgraphile, makePluginHook } = require('postgraphile');
const pluginHook = makePluginHook([
pgdbi,
/* other server plugins can be added here */
]);
app.use(
postgraphile(connectionString, schemas, {
pluginHook,
}),
);
You can access pgdbi at the /pgdbi
sub path, e.g. http://localhost:5000/pgdbi.
FAQs
## Installation
The npm package @graphile-contrib/pgdbi receives a total of 14 weekly downloads. As such, @graphile-contrib/pgdbi popularity was classified as not popular.
We found that @graphile-contrib/pgdbi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.