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

fornax

v1.0.4

Published

简单的mock服务

Downloads

2

Readme

Fornax

基于koamock.js的mock服务器

Installation

$ npm install -g fornax

or local install

$ npm install fornax --save-dev

Usage

Usage: fornax [options] [command]

Options:

  -h, --help  output usage information

Commands:

  start       start mock server
  init        initialize project with .fornax.config.js

Config

all configuration in ./fornax.config.js

| key | description | type | default | |---------------------|-------------------------------|----------------|-----------------------------------------------------------------------------------------------------------| | port | mock server port | number | 9000 | | apiPrefix | prefix of server api | string | /api | | mockRoot | root directory of mock files | string | mock | | responseInterceptor | handle response before return | function(body) | | | responseKey | key in reponse body | object | {code: 'code',message: 'msg',data: 'data'} | | pageKey | params for pagination | object | {skip:'skip',limit:'limit',order:'order',orderBy:'orderBy',pageSize:'pageSize',currentPage:'currentPage'} |

Mock files

mock
  ┠─ user
  ┃   ┠─ _id
  ┃   ┃   ┖─ order
  ┃   ┃       ┖─ _rest.js
  ┃   ┠─ _rest.js
  ┃   ┖─ _post.js
  ┠─ order
  ┃    ┖─ _rest.js
  ┖─ custmize.js

define template for mockjs

// mock/user/_rest.js
exports.mock = {
  'list|80-100': [
    {
      id: '@id',
      username: '@name',
      phone: /^1[34578]\d{9}$/,
      team: '@word(6)',
      address: '@county(true)',
      'gender|+1': [0, 1],
      email: '@email',
      lastip: '@ip',
      'status|+1': [0,1],
      'createdAt|100000000000-3535782743268': 1
    },
  ],
}
exports.responseInterceptor = function(body, ctx) {
  // override global responseInterceptor in config file
  return body;
}

pagination: get http://127.0.0.1:9000/api/user?skip=0&limit=10 query the first page and pageSize is 10

the response is

{
  code: 200,
  msg: "success",
  data: {
    list: [
      {
        id: "440000199206017397",
        username: "Jeffrey Miller",
        phone: "13218261491",
        team: "itezre",
        address: "浙江省 舟山市 其它区",
        gender: 0,
        email: "[email protected]",
        lastip: "153.69.229.78",
        status: 0,
        createdAt: 313244937539
      },
    ],
    total: 83
  }
}

pagination with params: get http://127.0.0.1:9000/api/user?skip=0&limit=10&status=1
get user: get http://127.0.0.1:9000/api/user/440000199206017397
create user: post http://127.0.0.1:9000/api/user
update user: put http://127.0.0.1:9000/api/user/440000199206017397
delete user: delete http://127.0.0.1:9000/api/user/440000199206017397

visis user's order: get http://127.0.0.1:9000/api/user/440000199206017397/order

rewrite get/post/put/delete

// mock/user/_post.js
exports.handle = () => {
  return async ctx => {
    // koa request handler

    ctx.responseInterceptor = function(body, ctx) {
      // override global responseInterceptor in config file
    }
  }
}

customize handler

exports.handle = (router) => {
  // koa-router
  router.get('/customizeRouter', ctx => {
    // koa request handler

    ctx.responseInterceptor = function(body, ctx) {
      // override global responseInterceptor in config file
    }
  });
}