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

apeman-proto-adminapi

v3.0.2

Published

Prototype for admin api projects.

Downloads

23

Readme

apeman-proto-adminapi

Build Status Code Climate Code Coverage npm Version JS Standard

Prototype for admin api projects.

Installation

$ npm install apeman-proto-adminapi --save

Usage

/** This is an example Apemanfile.js */

'use strict'

module.exports = {
    $ctx: {
        // Project context
    },
    $pkg: {/* ... */},
    $proto: [
        // Inherit apeman-proto-adminapi project.
        require('apeman-proto-adminapi')
    ],
    $tmpls: {/* ... */},
    $tasks: {/* ... */}
}

Apemanfile Configurations

$pkg

| Name | Value | | --- | ---- | | name | apeman-proto-adminapi | | version | 3.0.2 | | description | Prototype for admin api projects. |

$proto

$tmpls

| Path | Force | Mode | Tmpl | Data | | ---- | ---- | ---- | --- | --- | | constants/.constants.js.bud | false | '644' | #!/usr/bin/env node /** * Bud file ... | {"year":2016,"params":{"type":"consts... | | constants/index.js | false | '644' | /** * Exports constants modules. * ... | {"params":{},"generator":"apeman-tmpl... | | errors/.html.bud | false | '644' | /** * Bud file for error * Executin... | {"year":2016,"params":{"type":"error"... | | middlewares/.middleware.js.bud | false | '644' | #!/usr/bin/env node /** * Bud file ... | {"year":2016,"params":{"type":"apiMid... | | middlewares/index.js | false | '644' | /** * Exports middleware modules. *... | {"params":{},"generator":"apeman-tmpl... | | public/humans.txt | false | '644' | {{! apeman-tmpl-humans }} /* TEAM */ ... | {"params":{},"generator":"apeman-tmpl... | | public/robots.txt | false | '644' | {{! apeman-tmpl-robot }}# robot.txt #... | {"params":{"disallow":["errors","tmp"... | | routes/.route.js.bud | false | '644' | #!/usr/bin/env node /** * Bud file ... | {"year":2016,"params":{"type":"adminA... | | routes/index.js | false | '644' | /** * Exports route modules. * * G... | {"params":{},"generator":"apeman-tmpl... | | schemas/.schema.js.bud | false | '644' | #!/usr/bin/env node /** * Bud file ... | {"year":2016,"params":{"type":"schema... | | schemas/index.js | false | '644' | /** * Exports schema settings{{#if n... | {"params":{},"generator":"apeman-tmpl... | | settings/.setting.json.bud | false | '644' | #!/usr/bin/env node /** * Bud file ... | {"year":2016,"params":{"type":"settin... | | settings/index.js | false | '644' | /** * Project settings. * * Genera... | {"params":{},"generator":"apeman-tmpl... | | tests/.test.js.bud | false | '644' | #!/usr/bin/env node /** * Bud file ... | {"year":2016,"params":{"type":"route-... |

$apps

| Name | Description | | ---- | --- | | adminapi:dynamic | Serve dynamic content | | adminapi:static | Serve static files | | api:dynamic | Serve dynamic content | | api:middleware | {"/":[]} | | api:static | Serve static files | | dynamic:body | {} | | dynamic:delay | Add delay. | | dynamic:env | Set env header to response. | | dynamic:log | Log requests. | | dynamic:middleware | {"/":[]} | | public:static | Serve static files. | | session:enable | Enable session feature. | | session:flush | Add flush message support with session |

$tasks

| Name | Description | | ---- | --- | | adminapi:mkdir | Generate directories for API app. | | adminapi:render | Render bud files. | | api:mkdir | Generate directories for API app. | | api:render | Render bud files. | | app:fmt | Format a json file. | | app:mkdir | Generate directories for app. | | app:render | Render bud files. | | app:test | ["mocha:run"] | | mocha:mkdir | Generate directories for project with mocha. | | mocha:render | Render files for project with mocha. | | mocha:run | Run mocha tests. | | test:mkdir | Generate directories. | | test:render | Render coz bud files. | | wtch:list | List available watches. | | wtch:start | Start all watches. |

$wtchs

| Name | Description | | ---- | --- | | api:render | {"pattern":"+(schemas)//.*.bud"} | | app:render | {"pattern":"+(errors|constants|public|routes|tests|settings)//..bud"} | | test:render | {"pattern":["test/**/..bud"]} |

$needs

| Bin | How to install | | --- | ----- | | apeman | npm install -g apeman | | mocha | npm install -g mocha |

License

This software is released under the MIT License.

Links