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

httpf

v0.0.9

Published

used in expressjs, app.use('/xxx', httpFunc({args:['string', 'string', 'callback']}, function(s1, s2, callback) {callback(null, s1+s2);}))

Downloads

7

Readme

httpf

用于express,将http请求翻译成函数调用.

httpf可以接受url以及body中的参数。使用body时需要在前面加上

app.use(bodyParser.urlencoded());

Usage

app.all('/f1', httpf({p1:'string', p2:'number', p3:'date'}, function(p1, p2, p3, cb) {
    assert(typeof p1==='string'
    && typeof p2 === 'number'
    && p3 instanceof Date);
    
    return 'ok';
}));
app.all('/f2', httpf(['string', 'number', 'date', 'callback'], function(p1, p2, p3, cb) {
    assert(typeof p1==='string'
    && typeof p2 === 'number'
    && p3 instanceof Date);
    cb(null,'ok');
}));

支持的type

  • 所有 javascript 定义的type,ie, string, number, boolean, etc
  • date, 日期, 任何可以被new Date()识别的字符串。ie. time=2015-1-2 15:00
  • object, 对象,JSON.parse可以识别的字符串 ie obj={"a":1, "o":{}}

callback

如果在opt中包含callback,f的最后一个参数将会是回调函数,给客户端的返回值需要从这里传出。 e.g

app.all('/f',httpf({callback:1}, function(callback) {
    callback(null, 'ok');
}));

否则直接通过return给出返回值

no_return

如果含有no_return标记,httpf不向res中写入任何数据,此时f需要自行管理向客户端返回数据。这通常用于下载文件。 e.g

app.use('/dl', httpf({name:'string', no_return:true}, function(name) {
    require('fs').createReadStream(name).pipe(this.res);
}));

httpf.text(str[,statusCode])

app.all('/f',httpf(function() {
    return httpf.text('hello!');
}));

这个函数用来构造text/html类型的返回值

客户端接受到的值

除非定义了no_return, 总是一个json字符串

{"result":"ok"|"error", message:"something", ...}

result='ok' 代表函数成功,返回值一般在message中,或者就是这个对象本身

result='error', 执行失败,错误在message中。

未来的改变

上述返回值在下一版会被修改成

{err:"something wrong"} || {message:"ok", ...}

Updates

0.0.6 增加了跨域支持,CDN不再会缓冲httpf返回的数据

从0.0.7开始。支持jsonp调用。但是不能自定义$.ajax({jsonp})这个关键字,必须是默认的'callback'。