exutile
is a lightweight utility library designed specifically for Express.js, helping developers simplify server-side logic and reduce boilerplate code. It provides ready-to-use features like error handling, HTTP status utilities, and standardized API responses, enabling you to write cleaner, more maintainable code effortlessly.
- Features
- Installation
- Motivation
- Quick Start
globalErrorHandler
: Error Handler MiddlewareserveStatic
: Serve Static Website Middleware (e.g., React, Vue)asyncHandler
: Simplifying Controllers- Standardized JSON Responses with ApiRes
- HttpError
- HttpStatus
proxyWrapper
: Class Controllers- Conclusion
- Contributing
- Author
- License
- ✅ Simplified error handling with
globalErrorHandler
- ✅ Simplified Serve Static Website with
serveStatic
- ✅ Automatic async error handling using
asyncHandler
- ✅ Standardized API responses with
ApiRes
- ✅ Flexible HTTP status codes and custom error classes
- ✅ Class-based controllers with
proxyWrapper
Building APIs often involves repetitive tasks like handling errors, managing HTTP status codes, or structuring JSON responses.
exutile
was created to eliminate this hassle, allowing developers to focus on writing business logic instead of reinventing common solutions. Whether you're a beginner or an experienced developer,exutile
streamlines your workflow and ensures your Express applications are consistent and reliable.
npm install --save exutile
Here’s a minimal setup to get you started with exutile:
import express from 'express';
import {asyncHandler, globalErrorHandler} from 'exutile';
const app = express();
// Middleware
app.use(express.json());
// Example route using asyncHandler
const getUser = asyncHandler(async (req, res) => {
const user = await getUserById(req.params.id);
return ApiRes.ok(user); // Send user data in the response
});
// Routers
app.get('/user/:id', getUser);
// Error handling middleware
app.use(
globalErrorHandler({
isDev: process.env.NODE_ENV === 'development',
write: error => console.error(error),
}),
);
app.listen(3000, () => {
console.log('Server running on port 3000');
});
The globalErrorHandler
middleware manages HttpErrors and Unknown errors, returning appropriate json responses.
Usage:
import {errorHandler} from 'exutile';
// Basic usage with default options
app.use(
globalErrorHandler({
isDev: process.env.NODE_ENV === 'development',
}),
);
// Custom usage with logging in production mode
app.use(
globalErrorHandler({
isDev: process.env.NODE_ENV === 'development',
write: error => console.error(error),
}),
);
Signature:
globalErrorHandler({ isDev: boolean, write?: (err) => void }): ErrorRequestHandler
Options:
- isDev: Enables detailed error messages in development mode (default: true).
- write: Optional callback for logging or handling errors.
The serveStatic
function is a middleware that serves static files from a directory and handles Single Page Application (SPA) routing by returning index.html for unmatched routes, excluding specified patterns (e.g., API routes).
import express from 'express';
import {serveStatic} from 'exutile';
const app = express();
// Serve static files and handle SPA routing
app.use(serveStatic({path: 'public', exclude: '/api{/*path}'}));
app.listen(3000, () => {
console.log('Server running on port 3000');
});
- path: The directory to serve static files from
(default: "public")
. - exclude: Routes to exclude from SPA routing. This can be a string or an array of strings.
(default: '/api{/\*path}')
.
Note: The exclude option can take advantage of the path-to-regexp library to define more complex route patterns.
Eliminates repetitive try-catch
blocks by managing error handling for both async and sync functions. It also integrates seamlessly with ApiRes for enhanced response handling.
import {asyncHandler, ApiRes} from 'exutile';
// Route without asyncHandler (traditional approach with try-catch)
app.get('/user/:id', async (req, res, next) => {
try {
const user = await getUserById(req.params.id);
res.status(200).json(user);
} catch (error) {
next(error); // Pass the error to the error-handling middleware
}
});
// Route using asyncHandler (simplified with exutile)
app.get(
'/user/:id',
asyncHandler(async (req, res) => {
const user = await getUserById(req.params.id); // Fetch user from database
return ApiRes.ok(user, 'User fetched successfully'); // Send success response using ApiRes
}),
);
const login = asyncHandler(async (req, res) => {
const {email, password} = req.body;
const user = await loginUser(email, password);
// Manually setting headers
res.setHeader('X-Custom-Header', 'SomeHeaderValue');
// Set multiple cookies for authentication
res.cookie('access-token', user.accessToken, {
httpOnly: true,
secure: true, // Set to true in production with HTTPS
maxAge: 3600000, // 1 hour
});
res.cookie('refresh-token', user.refreshToken, {
httpOnly: true,
secure: true,
maxAge: 7 * 24 * 3600000, // 1 week
});
// API response with token and user info
return ApiRes.ok(user, 'Logged in successfully');
});
- Simple Response:
const getHome = asyncHandler(() => 'Hello World!');
- Custom JSON Response:
const getHome = asyncHandler(() => ({message: 'Hello World!'}));
- Without ApiRes:
const login = asyncHandler(async (req, res) => {
const user = await getUserById(req.params.id);
// Manually setting headers
res.setHeader('X-Custom-Header', 'SomeHeaderValue');
// Setting cookies
res.cookie('access-token', user.accessToken, {
httpOnly: true,
secure: true, // Set to true in production with HTTPS
maxAge: 3600000, // 1 hour
});
// Sending a custom JSON response
return res.status(200).json({
status: 'success',
message: 'User fetched successfully',
data: user,
});
});
import {Role} from './constants';
import {asyncHandler, ForbiddenError} from 'exutile';
/** Permission middleware */
export const permission = (...roles: Role[]) =>
asyncHandler(async (req, _, next) => {
const {user} = req;
if (!roles.includes(user?.role))
throw new ForbiddenError(`Access denied for ${req.originalUrl}`);
next();
});
export const onlyAdmin = permission(Role.ADMIN);
export const adminOrUser = permission(Role.ADMIN, Role.USER);
ApiRes provides a consistent structure for API responses. It includes several static methods that handle common response patterns, such as ok
, created
, and paginated
.
import {ApiRes} from 'exutile';
// With paginated
const list = asyncHandler(async req => {
const {data, meta} = await getUsers(req.query);
return ApiRes.paginated(data, meta, 'Get users list successfully');
});
// With created
const create = asyncHandler(async req => {
const user = await createUser(req.body);
return ApiRes.created(user, 'User created successfully');
});
// With ok
const get = asyncHandler(async req => {
const user = await getUser(req.params);
return ApiRes.ok(user, 'Get user successfully');
});
// Routers
app.route('/').get(list).post(create);
app.route('/:id').get(get);
ok(result, message)
: Returns a success response (HTTP 200).created(result, message)
: Returns a resource creation response (HTTP 201).paginated(data, meta, message)
: Returns a success response (HTTP 200).
The HttpError class standardizes error handling by extending the native Error class. It’s used to throw HTTP-related errors, which are then caught by the globalErrorHandler
middleware.
import {HttpError, HttpStatus} from 'exutile';
// Example without asyncHandler
app.get('*', () => {
throw new HttpError('Not Found', HttpStatus.NOT_FOUND); // Throw a 404 error
});
// Example with asyncHandler
app.post(
'/example',
asyncHandler(req => {
if (!req.body.name) throw new BadRequestError('Name is required');
}),
);
msg
: This parameter accepts an error message, which can be a single string or an array of strings (required).status
: The status code of the error, mirroringstatusCode
for general compatibility (default is 500).detail
: This is an optional plain object that contains additional information about the error.
const err = new HttpError('Validation error.', 400, {
username: 'Username is required',
password: 'Password is required',
});
Note: If only a status code is provided, the HttpError class will automatically generate an appropriate error name based on that status code.
BadRequestError
UnAuthorizedError
NotFoundError
ConflictError
ForbiddenError
PaymentRequiredError
NotImplementedError
InternalServerError
The HttpError.isHttpError(value)
method determines if a specific value is an instance of the HttpError
class.
// If it is an HttpError, send a JSON response with the error details
if (HttpError.isHttpError(err))
return res.status(err.status).json(err.toJson());
else {
// If it's not an HttpError, pass it to the next middleware for further handling
next(err);
}
- status: The HTTP status code associated with the error.
- message: A brief description of the error.
- stack: The stack trace of the error (available in development mode).
- details: Optional additional information about the error.
export const errorHandler: ErrorRequestHandler = (err, req, res, next): any => {
// Handle known HttpError instances
if (HttpError.isHttpError(err))
return res.status(err.status).json(err.toJson());
// Log unknown errors
console.error(err);
// Create an InternalServerError for unknown errors
const error = new InternalServerError(
config.dev ? err.message : 'Something went wrong',
config.dev ? err.stack : null,
);
return res.status(error.status).json(error.toJson());
};
Converts an HttpError
instance into a structured JSON format.
return res.status(err.status).json(err.toJson());
Note: details if applicable then additional information that provides context about the error.
The HttpStatus
provides readable constants for standard HTTP status codes (2xx, 3xx, 4xx, 5xx) and Names, improving code clarity and consistency.
import {HttpStatus} from 'exutile';
// Example: Basic usage in a route
app.get('/status-example', (req, res) => {
res.status(HttpStatus.OK).json({message: 'All good!'});
});
// Example: Custom error handling middleware
app.use((req, res) => {
res.status(HttpStatus.NOT_FOUND).json({
error: 'Resource not found',
});
});
// Example: Response with a 201 Created status
app.post('/create', (req, res) => {
const resource = createResource(req.body);
res.status(HttpStatus.CREATED).json({
message: 'Resource created successfully',
data: resource,
});
});
The NAMES
object provides a simple lookup for the descriptive names of HTTP status codes.
const statusName = HttpStatus.NAMES.$200; // 'OK'
-
2xx: Success
HttpStatus.OK
: 200 — Request succeeded.HttpStatus.CREATED
: 201 — Resource created.HttpStatus.ACCEPTED
: 202 — Request accepted for processing.HttpStatus.NO_CONTENT
: 204 — No content to send.- and more ....
-
3xx: Redirection
HttpStatus.MOVED_PERMANENTLY
: 301 — Resource moved permanently.HttpStatus.FOUND
: 302 — Resource found at another URI.HttpStatus.NOT_MODIFIED
: 304 — Resource not modified.- and more ....
-
4xx: Client Error
HttpStatus.BAD_REQUEST
: 400 — Bad request.HttpStatus.UNAUTHORIZED
: 401 — Authentication required.HttpStatus.FORBIDDEN
: 403 — Access forbidden.HttpStatus.NOT_FOUND
: 404 — Resource not found.- and more ....
-
5xx: Server Error
HttpStatus.INTERNAL_SERVER_ERROR
: 500 — Internal server error.HttpStatus.NOT_IMPLEMENTED
: 501 — Not implemented.HttpStatus.SERVICE_UNAVAILABLE
: 503 — Service unavailable.- and more ....
exutile
provides the utility proxyWrapper
to make simplify working with class-based controllers in Express.
// example-controller.ts
import {Request} from 'express';
// Controller Class
class ExampleController {
constructor(private message: string) {}
async getData(req: Request) {
// Your logic here
return ApiRes.ok({}, this.message);
}
}
// example-routes.ts
import {Router} from 'express';
import {proxyWrapper} from 'exutile';
import {ExampleController} from './example-controller.ts';
const exampleRoutes = (): Router => {
const router = Router();
// Create a proxied instance of ExampleController
const example = proxyWrapper(ExampleController, 'Hello World');
// Configure routes
return router.post('/data', example.getData);
};
- Parameters:
clsOrInstance
: A class constructor or an instance of a class.args
: Arguments for the class constructor (ifclsOrInstance
is a constructor).
- Returns: A proxied instance where all methods are wrapped with
asyncHandler
.
- Instantiates the specified class if a constructor is provided.
- Wraps all its methods with
asyncHandler
, allowing for automatic handling of asynchronous operations. - Prevents method/property overrides for safety.
You can use proxyWrapper
with dependency injection libraries like tsyringe
or typedi
.
const exampleRoutes = (): Router => {
const router = Router();
// Create a proxied instance of ExampleController
const example = proxyWrapper(container.resolve(ExampleController));
// Configure routes
return router.post('/data', example.getData);
};
const exampleRoutes = (): Router => {
const router = Router();
// Create a proxied instance of ExampleController
const example = proxyWrapper(Container.get(ExampleController));
// Configure routes
return router.post('/data', example.getData);
};
exutile
is a powerful tool designed to simplify and enhance Express.js applications by providing essential features out of the box. Whether you’re building a simple API or a complex web application, exutile helps you maintain clean and manageable code.
Contributions are highly appreciated! To contribute:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Submit a pull request with a clear description of your changes.
- Created by Aashish Panchal.
- GitHub: @aashishpanchal