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

koa-resourcer

v1.0.2

Published

A resource directory mounter for koa.

Downloads

10

Readme

koa-resourcer

A simple resource directory mounter for koa.

Build Status Coverage Status npm

var koa = require('koa');
var resource = require('koa-resourcer');

var app = koa();
resource(app, join(__dirname, 'resources') [, callback])
app.listen();

The idea behind koa-resourcer is complete modularity within your koa app. Each directory can be a stand-alone koa application with all it's own tests, docs, dependencies, etc. koa-resourcer makes it easy to mount these apps if you follow a simple directory pattern.

Directory structure

Say we have the following directory structure:

resources/
|-- v1/users/
|   |-- config.json
|   `-- app.js
|-- v1/products/
|   |-- config.json
|   |-- makefile
|   |-- index.js
|   |-- lib/
|   |   `-- utils.js
|   `-- test/
|       `-- index.js
`-- v2/users/
    |-- config.json
    `-- fun.js

We have three independent apps here. v1/users/app.js, v1/products/index.js and v2/users/fun.js. We could use koa-mount directly and be done with it but that requires the parent application to know where all the apps are and the paths on which they should be mounted.

var koa = require('koa')
var mount = require('koa-mount')
var app = koa()

var v1users = require('./v1/users/app.js')
app.use(mount('v1/users/', v1users))

var v2users = require('./v2/users/fun.js')
app.use(mount('v2/users/', v2users))

var v1products = require('./v1/products/')
app.use(mount('v1/products/', v1products))

// and so on, and so on, for each of your sub apps....

app.listen()

With koa-resourcer you let your directory structure and some simple config files do the talking for you, keeping your parent application peacefully oblivious.

var koa = require('koa')
var join = require('path').join
var resource = require('koa-resourcer')
var app = koa()

resource(app, join(__dirname, 'resources'))

app.listen()

config.json

Each application directory must contain a config.json file. The config.json file is used to discover the location of the application source code. This information is stored in it's source property.

// resources/v1/users/config.json

{ "source": "app.js" }

By relying on the directory structure to determine route paths, koa-resourcer will automatically mount app.js on /v1/users/ for you. If this path isn't quite what you want, koa-resourcer also supports configuring your path names in the config.json files.

// resources/v1/users/config.json

{ "source": "app.js", "path": "user" }

By adding the path property to our configuration, koa-resourcer will now mount the app on /v1/user/.

Callbacks

If you pass a callback function as the third argument to koa-resourcer, it will be executed for each mounted application passing an object containing the path and application resource.

var koa = require('koa')
var join = require('path').join
var resource = require('koa-resourcer')
var app = koa()

resource(app, join(__dirname, 'resources'), function(o){
  console.log('mounted %s', o.path, o.resource)
})

app.listen()

Installation

npm install koa-resourcer --save

Development

running tests

  • make test runs tests
  • make test-cov runs tests + test coverage
  • make open-cov opens test coverage results in your browser

verbose logging

koa-resourcer supports the debug module for help during development. Enable verbose logging by setting your DEBUG env variable like so:

DEBUG=koa-resourcer* npm test
```

## Sponsored by

[Pebble Technology!](https://getpebble.com)

## License

[MIT](https://github.com/pebble/koa-resourcer/blob/master/LICENSE)