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

koa-partial-content

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koa-partial-content

use koa2 to establish http 206 status, it's about partial content

latest
Source
npmnpm
Version
2.0.1
Version published
Maintainers
1
Created
Source

koa-partial-content

Build Status Coverage Status

This package makes media type(mp3|mp4|flv|webm|ogv|mpg|mpg|wav|ogg) response http status code 206

Usage

  • install:
$ npm install koa koa-router koa-partial-content
  • use with koa-router:
'use strict'

const koa = require('koa')
const koaRouter = require('koa-router')
const koaPart = require('koa-partial-content')

let app = new koa()
let router = new koaRouter()
let part = new koaPart(__dirname)//your server base path,defalut is process.cwd()

router.get('/source/barroom.mp3', part.middleware())//when barroom.mp3 is requested, it will response http status code 206 or part.middleware(truePath), it will use truePath first, secondly ctx.path 
app.use(router.routes())
  • http status code:
    • 206: partial content
    • 416: request range is more than file size
    • other error will throw a new Error,you need to use error handle to catch them, for more information please see: test case

tips

  • if you wanna submit pr, please ensure you have run npm run lint first.

Keywords

koa2

FAQs

Package last updated on 23 Jun 2020

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