🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

alp-body-parser

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alp-body-parser

body parser in alp framework

latest
Source
npmnpm
Version
12.0.0
Version published
Weekly downloads
16
77.78%
Maintainers
1
Weekly downloads
 
Created
Source

alp-body-parser

body parser in alp framework

npm version npm downloads node version types

Install

npm install --save alp-body-parser

Usage

import Koa from "koa";
import { config } from "alp-node";
import bodyParser from "alp-body-parser";

const app = new Koa();
config(`${__dirname}/config`, { packageConfig })(app);
bodyParser(app);
export default {
  async form(ctx) {
    const body = await ctx.parseBody();
  },

  async json(ctx) {
    const body = await ctx.parseBodyJson();
  },

  async text(ctx) {
    const body = await ctx.parseBodyText();
  },
};

Keywords

alp

FAQs

Package last updated on 12 Nov 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