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

@funcstache/koa-middleware

v0.1.5

Published

Koa middleware to create dynamic webpages that are rendered on the server.

Downloads

462

Readme

koa-middleware

koa middleware to create dynamic webpages that are rendered on the server.

  • Defines conventions that simplify page creation for developers
  • File-based routing
  • Ideal for rendering templates on the server and returning HTML to the client
  • Brings the fun back to web development!

We're using: the proven pattern of rendered templates, combined with new JavaScript capabilities, plus some defined conventions, to simplify rendering web pages dynamically.

Why? Because client-side rendered SPAs are unnecessary for most websites. Also, using a client-side-rendering library to render pages on the server adds complexity for developers, render time, and code bloat that slows down development progress.

install

npm i @funcstache/koa-middleware

File-based routing

funcstache koa-middleware uses file-based routing, the path of the URL defines which part of the file system is accessed. For example the URL path / might be handled by the contents of a directory named site. The root directory is passed to funcstache using the directory option.

koa-middleware depends on each directory, that can be accessed by the URL, to contain an index.js file. koa-middleware treats index.js as an ES module that exports three optional functions.

Of course you will also need at least one mustache file to render a document (usually an HTML file). The mustache file can have whatever name you want, but it must end with the ".mustache" extension, e.g. books.mustache. For example, your directory structure could look like this:

/
├── books/
│   ├── index.js
│   └── books.mustache
└── movies/
    ├── index.js
    └── movies.mustache

Path params

koa-middleware allows directories to be named using path-to-regexp named parameters. The named parameter values will be available to functions in the index.js file from Context.params.

Here's an example of a directory structure that uses a named parameter. The books directory has a subdirectory named :id. If a path like "/books/451" is provided to funcstache it will resolve to the /books/:id directory and the value "451" will be provided via Context.params.

/
└── books/
    ├── index.js
    ├── books.mustache
    └── :id/
        ├── index.js
        └── book.mustache