New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@jderjs/core

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jderjs/core

A standard response builder

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

JDER Core

A standard response builder.

This package includes different response builders based on the JSON response structure specified in JSON Data Errors Response (JDER). With the builders, various kinds of responses can be created easily instead of sending plain text responses.

Quick Start

To create a JSON response, use the following code:

import { createJsonResponse } from "@jderjs/core";

const route = (): Response => {
    return createJsonResponse();
}

And the response will be shown as below:

{
    "success": true
}

License

This project is licensed under the terms of the MIT license.

Keywords

jder

FAQs

Package last updated on 13 Aug 2025

Did you know?

Socket

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.

Install

Related posts