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

uexpress

v0.4.0

Published

Microscopically small universal express implementation

Downloads

14

Readme

uexpress

Microscopically small universal express-like router/dispatcher

npm license travis greenkeeper mind BLOWN

uexpress is a microscopically small universal (works in node and the browser) router/dispatcher that closely mimics Express, and indeed can be mounted in a regular express instance.

Install

npm install --save uexpress

require

var uexpress = require('uexpress')

import

import uexpress from 'uexpress'

use

my-server.js

import express from 'express'
import uexpress from 'uexpress'

import myapp from './myapp'  // myapp is a uexpress app

express()                    // the 'normal' express app
  // .use(cookieParser)      // .. express middleware
  .use(myapp)                // myapp is mounted in express
	.listen(8080)              // start the server

my-client.js

import uexpress from 'uexpress'

import myapp from './myapp'  // myapp is a uexpress app

uexpress()                   // uexpress works in the browser
  .use(myapp)                // myapp is mounted in uexpress
	.listen()                  // start the client

After the call to listen, uexpress will attach an event handler to window.history and route and dispatch a new request/response cycle every time the URL changes, just like express does on the server.

why

express rocks! Too bad it's only available on the server.

But why would you want to run a web server on the client?

I don't. But Express is much more than just a web server. In fact, since it's just an extension to Node's native http server, it's actually lots of things but a web server. It's an excellent router for one and it has a great request/response pipeline with middleware.

It has, in short, the stuff we need when we are building a client-side rendering app (a SPA perhaps). And even better, if we emulate it's API, we will be able to take the universal/isomorphic part of our code a whole lot further. We can define uexpress apps that can run standalone on the client, but can also easily be mounted in an Express server.

The best of both worlds!

Microscopically small

The browser version of uexpress (which is bigger than the server version) is ~3kB minified and gzipped.

It does have a few dependencies:

  • uroute Microscopically small Express-like universal routing, ~1.9kB
  • uevents Microscopically small version of Node's popular events module, ~1.6kB
  • uhistory Microscopically small History API, ~0.6kB
  • uqs Microscopically small querystring parser/stringifier, ~0.6kB

Issues

Add an issue in this project's issue tracker to let me know of any problems you find, or questions you may have.

Copyright

Copyright 2016 by Stijn de Witt. Some rights reserved.

License

Licensed under the Creative Commons Attribution 4.0 International (CC-BY-4.0) Open Source license.