npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

egg20191125

v3.3.11

Published

``` > > > Node ``` >>Node app.mockLog([logger]) and app.expectLog(str[, logger]), app.notExpectLog(str[, logger]) Assert some string value in the logger instance. It is recommended to pair app.mockLog() with app.expectLog() or app.notExpectLog(). Usi

Downloads

5

Readme

> > > Node

Node app.mockLog([logger]) and app.expectLog(str[, logger]), app.notExpectLog(str[, logger]) Assert some string value in the logger instance. It is recommended to pair app.mockLog() with app.expectLog() or app.notExpectLog(). Using app.expectLog() or app.notExpectLog() alone requires dependency on the write speed of the log. When the server disk is high IO, unstable results will occur.


###You can also create a cancel token by passing an executor function to the CancelToken constructor:

    // login >> jiaoyan

    async log(){
        let {ctx,service}=this;
        let {username,password}=ctx.request.body;
        let errors = this.app.validator.validate({username:'string',password:'email'},ctx.request.body)
        console.log("errors",errors)
        if(errors.length>0){
            ctx.body={
                code:1,
                msg:"jiaoyan"
            }
        }else{
            ctx.body={
                code:0,
                msg:"success"
            }
        }
    }

    // same of up

    async del(){
        let {ctx,service}=this;
        let {id}=ctx.query;
        if(id){
            let token = ctx.request.header.token
            let info = jwt.c=verify(token,'1705b')
            if(info.roleid===1){
                try{
                    ctx.body={
                        code:1,
                        msg:"error"
                    }
                }catch(e){
                    ctx.body={
                        code:0,
                        msg:e
                    }
                }
            }
        }
    }

You can cancel a request using a cancel token.

The axios cancel token API is based on the withdrawn cancelable promises proposal.

You can create a cancel token using the CancelToken.source factory as shown below:

    {
        axios.post('/list',{username:name,pwd:pwd},{headers:{token:data}}).then(res=>{})
        axios.get(`/list ?username=${name}&pwd=${pwd}`,{headers:{token:data}}).then(res=>{})
         axios.get(/list,{params:{username,pwd},headers:{'egg-identity':'admin'}}).then(res=>{})
    }

aa

Using application/x-www-form-urlencoded format

By default, axios serializes JavaScript objects to JSON. To send data in the application/x-www-form-urlencoded ### format instead, you can use one of the following options.

Browser In a browser, you can use the URLSearchParams API as follows:

NOTE ###The qs library is preferable if you need to stringify nested objects, as the querystring method has known issues with that use case (https://github.com/nodejs/node-v0.x-archive/issues/1665).

Semver ###Until axios reaches a 1.0 release, breaking changes will be released with a new minor version. For example 0.5.1, and 0.5.4 will have the same API, but 0.6.0 will have breaking changes.


// middleware > qx

module.exports = () => { return async(ctx, next) => { let whitePath = ['/api/getList']; try { if (whitePath.includes(ctx.request.path)) { await next() } else { let { eggidentity } = ctx.request.header; if (eggidentity === 'admin') { await next() } else { ctx.body = { msg: 'no quanxian', status: 401, code: 1 } // await next() } } } catch (error) { ctx.body = { code: 11, msg: error.message } } } }


> > >


> > >


Node

// middleware>authentication

const jwt = require('jsonwebtoken')
module.exports=()=>{
    return async (ctx,next)=>{
        let arr = ['api/login','api/registry']
        if(arr.includes (ctx.request.path)){
            await next()
        }else{
            let token = ctx.requset.header.token;
            try {
                let info = jwt.verify(token,'1705b')
                ctx.info = info
            } catch (e) {
                ctx.body = {
                    code:0,
                    msg:'token过期'
                }
            }
        }
    }
}