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

hyper-nano

v3.0.0

Published

In-Memory hyper http server using in-memory adapters

Downloads

380

Readme


Table of Contents


Motivation

A core tenant of the hyper service framework is that an application should not need to care about the underlying service implementation. By building an application to consume an api, your appliation, and ergo your business logic, is kept separate and decoupled from the services that power it.

Learn more about Clean Architecture

This allows for swapping out the service api implementations, without having to change business logic. hyper-nano is an embodiment of this approach.

hyper nano is an instance of hyper running an http based api, and a set of in-memory adapters for all of the hyper service offerings:

This allows running a hyper instance locally, great for development, or for sandboxed short-lived environments ie. GitHub Workspaces or GitPod.

At hyper, we exclusively use short-lived ephermeral environments for all development. We dog food hyper to build hyper.

Then when you deploy, your application consumes your actual hyper application in hyper cloud, with no code changes required; (hyper cloud is just hyper instances running a different http based api set of adapters)

Documentation

consuming hyper documentation

To use hyper nano, you can download a compiled binary and run it

curl https://hyperland.s3.amazonaws.com/hyper -o nano
chmod +x nano
./nano

There are binaries built for each major platform:

Node Usage

Alternatively, if you use Node, you may run hyper nano using npx:

npx hyper-nano --domain=foobar --experimental --data --cache ...

Deno Usage

Alternatively, if you use Deno you may run hyper nano directly from the source:

deno run --allow-run --allow-env --allow-read --allow-write=__hyper__ --allow-net --unstable --no-check=remote https://raw.githubusercontent.com/hyper63/hyper/main/images/nano/mod.js

If you'd like to programmatically start hyper nano, you can import main.js and run main:

import { main } from 'https://raw.githubusercontent.com/hyper63/hyper/main/images/nano/main.js'

await main()

and then run:

deno run --allow-env --allow-read --allow-write=__hyper__ --allow-net --unstable --no-check=remote foo.js

All of these examples above will start a hyper nano instance, listening on port 6363. You can then consume your hyper instance hyper-connect (recommended) or using HTTP.

To consume using hyper-connect pass http://127.0.0.1:[port]/[domain] to hyper-connect as your connection string

Consume with hyper-connect:

import { connect } from 'hyper-connect'

const hyper = connect('http://127.0.0.1:6363/test')

await hyper.data.list()

Or consume via HTTP

curl http://127.0.0.1:6363/data/test

Starting with Node 17, Node has changed how it resolves localhost, when using global fetch and fetch from libraries like undici. This may cause requests to localhost not to resolve correctly and fail. To get around this, you can use 127.0.0.1 or 0.0.0.0, in lieu of localhost. For more info, See this issue

URL Structure Disclaimer

If you use hyper-connect to consume hyper, you may disregard this section.

hyper nano is built on the open source version of hyper, and has a different URL structure than hyper cloud. This is because hyper cloud allows for groupings of services made explicit by the url.

For example, assuming the domain foo that has a data and cache service, hyper nano urls are structured as /data/foo and /cache/foo, whereas hyper cloud urls are structured as /foo/data/default and /foo/cache/default.

If you're consuming hyper using straight HTTP, you will need to take this difference in url structure into account. If you use hyper-connect, no changes are required since hyper-connect supports both hyper oss and hyper cloud url structures and knows which structure to use based on the provided connection string.

Bootstrapping services

This feature is experimental and will need the --experimental flag to be enabled

hyper nano can be supplied arguments to create services on startup:

  • --data: create a hyper data service on startup
  • --cache: create a hyper cache service on startup
  • --storage: createa a hyper storage service on startup

Other command line arguments can be provided:

  • --purge: destroy the existing services. You may also pass in which service types to purge. ie ./nano --experimental --data --cache --storage --purge=data,cache will delete data and cache, but not storage
  • --domain: the name of the domain your services will be created under. This defaults to test

Examples:

# Listen on 6363
./nano

# Purge the existing data service, then create a new one in test domain
./nano --experimental --data --purge

# Purge the cache service, then create data and cache services in test domain
./nano --experimental --data --cache --purge=cache

# Purge data, cache, and storage, then create data, cache, and storage services in test domain
./nano --experimental --data --cache --storage --purge

or programmatically:

import { main } from 'https://raw.githubusercontent.com/hyper63/hyper/main/images/nano/main.js'

/**
 * - Listen on 6363
 * - Purge data service in test domain
 * - Create data, cache, and storage services in the test domain
 */
await main({
  domain: 'test',
  experimental: true,
  services: {
    data: true,
    cache: true,
    storage: true,
  },
  purge: {
    data: true,
  },
})

Contributing

cache

deno task cache

test

deno task test

compile

make clean compile-{target}

LICENSE

Apache 2.0