![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.
Seems like everyone who's written a Node app has also written a JSON file storage module. I guess I'm no exception. Here's my rationale for publishing jdrop:
const jdrop = require('jdrop')({
path: 'data',
autocatch: true
});
let data = {
post: {
body: 'hello'
}
};
// save data
jdrop.put('posts', data).then(posts => {
// stuff here runs after data is saved
});
// update part of a file
jdrop.put('posts', 'HI!', 'post.body').then(posts => {
// stuff here runs after data is saved
});
// get data
jdrop.get('items').then(items => {
// do stuff with items...
});
// delete part of a file
jdrop.del('items', 'key.example[3].item').then(items => {
// stuff here runs after the file is altered
});
// delete a file
jdrop.del('items').then(() => {
// stuff here runs after the file is deleted
});
When you initialize jdrop, you can pass a config object with two optional settings.
path
is the directory in which to store JSON files. The keys you use to access files are paths relative to this directory. The default path is data
.
autocatch
controlls error handling behavior. The default behavior uses a promise rejection, which you can handle thusly:
jdrop.get('items').then(items => {
// do stuff...
}).catch(err => {
console.error(err);
});
If you set autocatch
to true
, jdrop will no longer reject promises. Instead, it will log the error and end the process with exit code 1.
Alternatively, you can supply a function to the autocatch
setting. This function will be passed any error objects that arise. You can use this to send an error to the client without crashing.
FAQs
Yet another JSON file store. But with some nice features.
We found that jdrop demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.