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

express-qx-router

v0.6.1

Published

a node.js module for express middleware, about auth,origin cors, body-parser and more, please se readme.md for details

Downloads

6

Readme

Express-qx-router

NPM version

配合Express使用的路由服务分发注册系统,Now , you can use the service !!!! please see the readme.md

                     _oo0oo_
                    088888880
                    88" . "88
                    (| -_- |)
                     0\ = /0
                  ___/'---'\___
                .' \\|     |// '.
               / \\|||  :  |||// \
              /_ ||||| -:- |||||- \
             |   | \\\  -  /// |   |
             | \_|  ''\---/''  |_/ |
             \  .-\__  '-'  __/-.  /
           ___'. .'  /--.--\  '. .'___
        ."" '<  '.___\_<|>_/___.' >'  "".
       | | : '-  \'.;'\ _ /';.'/ - ' : | |
       \  \ '_.   \_ __\ /__ _/   .-' /  /
   ====='-.____'.___ \_____/___.-'____.-'=====
                     '=---='

 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
       Buddha bless    : :    Never BUGs

Installation (via npm)

npm install express-qx-router

or

npm install express-qx-router --save

Usage

On Main Server

const qx = require("express-qx-router");
const qxServer = new qx.server();

qxServer.listen(mainPort, mainHostname, cb);

Install Auth

Install auth must be used. add an auth at least. An auth can only be used by one person to cerate client Service to connect the main service.

qxServer.install({name1:pass1, name2:pass2 ...});

On Client Server

create a app

const express = require("express");
const app = express();

create a client service object

const qx = require("express-qx-router");
const qxClient = new qx.client({
    port: mainPort,             // 主路由的端口,default 1333
    hostname: mainHostname,     // 主路由的hostname,default 127.0.0.1
    auth:{
        name: auth_name,    // 注册主路由时的auth,作为验证,需要在主路由中先配置此项
        pass: auth_pass
    }
});

Origin Cors

app.use(qxClient.cors(options));
Options

Configures the Access-Control-Allow-Origin CORS header. Options is a json.

origin          Array, default [*], set `Access-Control-Allow-Origin`
credentials     Boolean, default false, set `Access-Control-Allow-Credentials`
allowMethods    String, default 'GET,HEAD,PUT,POST,DELETE', set `Access-Control-Allow-Methods`
strict          Boolean, false, set `Access-Control-Allow-Origin` cors model

Auth

app.use(qxClient.auth({
    name: name,
    pass: pass
}));

if didnt set name and pass, qxClient will auto generate a name and pass.

BodyParser

app.use(qxClient.bodyParser(options))

#####Options Parse the request body. options is a json

encoding    String, default `utf-8`
multipart   Boolean, allow multipart data, default true,
jsonLimit   String|Integer, The byte (if integer) limit of the JSON body, default 1mb
formLimit   String|Integer, The byte (if integer) limit of the form body, default 56kb
textLimit   String|Integer, The byte (if integer) limit of the text body, default 56kb
patchNode   Boolean, Patch request body to Node's ctx.req, default false
patchKoa    Boolean, Patch request body to Koa's ctx.request, default true

add router-api

app.all("/getname", function (req,res){
    res.send("ok");
});

start client service

app.listen(clientPort, qxClient.registerServer(app));

Now, defined a rest Api for http://127.0.0.1:clientPort/getname, access the api you can use curl like

curl http://mainHostname:mainPort/auth_name/getname

Support

use the module must start least 2 service processes. 1 for Main service, others for client service processes.

Main service process is open to the outside world.

Client service processes is closed, not open to the outside world.

Users only through the main service process to access client service processes.

disclaimer

此模块是开发者自主兴趣开发和维护,不参与商业性运作,开发者具有最终解释权,如有任何疑问请在github上创建issue。