![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.
@lecstor/app-error
Advanced tools
Simplify error handling in microservices
$ yarn add @lecstor/app-error
const AppError = require('@lecstor/app-error');
const error = AppError(
"EmailInvalid",
{
status: 400,
message: "Not a valid email address"
}
);
console.log(error.stack);
EmailInvalid: Not a valid email address
at repl:1:15
...
const response = error.getResponse();
console.log(response);
{
name: 'EmailInvalid',
message: 'Not a valid email address',
status: 400,
isAppError: true,
isExpected: true
}
const express = require("express");
const requestP = require("request-promise-native");
const bunyan = require("bunyan");
const {
RemoteError, bunyanSerializer
} = require("@lecstor/app-error");
const buffer = new bunyan.RingBuffer({ limit: 10 });
const log = bunyan.createLogger({
serializers: { err: bunyanSerializer }
});
const app = express();
/**
* our function that creates a user with a call to the user service
* and throws RemoteErrors
*/
function createUser() {
return requestP.post({ uri: "http://localhost:4321/new-user" })
.catch(err => {
throw RemoteError(err.error);
});
}
/**
* our routes all end with a catch which calls `next`
*/
app.post("/create-user", (req, res, next) =>
createUser().catch(next)
);
/**
* our app includes an error handler which gets those `next` calls
*/
app.use(function(err, req, res, next) {
if (err.isAppError) {
const response = err.getResponse();
res.status(response.status).send(response);
if (err.isExpected) {
log.info({ err });
} else {
log.error({ err });
}
} else {
res.send(err);
log.error({ err });
}
});
module.exports = app;
FAQs
Simplify error handling in microservices
We found that @lecstor/app-error 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.