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

web4-near

v0.5.0

Published

Web3 using plain HTTP

Downloads

9

Readme

Coverage Status

web4

TL;DR

What is web4?

  • Decentralised ownership and hosting
  • Content permanence by default, no more expired links
  • Offline friendly
  • Web presence controlled by user
  • Interactive mobile apps linked together as websites, no appstores

How it works?

You only need to deploy single smart contract using WebAssembly to host your app HTTP backend, static resources and blockchain logic.

There is an HTTP gateway to NEAR blockchain which allows smart contract to handle arbitrary GET requests.

Every smart contract on NEAR also gets corresponding API endpoint which can be accessed through regular HTTP requests.

Known web4 sites

  • https://awesomeweb4.near.page
  • https://thewiki.near.page
  • https://lands.near.page
  • https://zavodil.near.page
  • https://psalomo.near.page
  • https://oracle-prices.near.page
  • https://orangejoe.near.page
  • https://orderly.near.page
  • https://theegg.near.page
  • https://twelvetone.near.page
  • https://sotg.near.page
  • https://pcards.near.page
  • https://aclot.near.page
  • https://wlog.near.page
  • https://1chess.near.page
  • https://vlad.near.page

Useful tools

  • HTTP gateway https://github.com/vgrichina/web4
  • High performance RPC https://github.com/vgrichina/fast-near
  • Deploy tool https://github.com/vgrichina/web4-deploy
  • Rust starter projects:
    • https://github.com/zavodil/near-web4-contract
    • https://github.com/frol/near-web4-demo
  • Self-hosted Linktree https://github.com/vgrichina/web4-littlelink
  • Svelte starter http://svelt.near.page
  • Web4 app catalog https://awesomeweb4.near.page

Example contract (in AssemblyScript)

export function web4_get(request: Web4Request): Web4Response {
    if (request.path == '/test') {
        // Render HTML with form to submit a message
        return htmlResponse(form({ action: "/web4/contract/guest-book.testnet/addMessage" }, [
            textarea({ name: "text" }),
            button({ name: "submit" }, ["Post"])
        ]));
    }


    if (request.path == '/messages') {
        const getMessagesUrl = '/web4/contract/guest-book.testnet/getMessages';
        // Request preload of dependency URLs
        if (!request.preloads) {
            return preloadUrls([getMessagesUrl]);
        }

        // Render HTML with messages
        return htmlResponse('messages: ' + util.bytesToString(request.preloads.get(getMessagesUrl).body)!);
    }

    if (request.accountId) {
        // User is logged in, we can welcome them
        return htmlResponse('Hello to <b>' +  request.accountId! + '</b> from <code>' + request.path + '</code>');
    }

    // Demonstrate serving content from IPFS
    if (request.path == "/") {
        return bodyUrl('ipfs://bafybeib72whzo2qiore4q6sumdteh6akewakrvukvqmx4n6kk7nwzinpaa/')
    }

    // By default return 404 Not Found
    return status(404);
}

Basically smart contract just needs to implement web4_get method to take in and return data in specific format.

Request

@nearBindgen
class Web4Request {
    accountId: string | null;
    path: string;
    params: Map<string, string>;
    query: Map<string, Array<string>>;
    preloads: Map<string, Web4Response>;
}

Response

@nearBindgen
class Web4Response {
    contentType: string;
    status: u32;
    body: Uint8Array;
    bodyUrl: string;
    preloadUrls: string[] = [];
    cacheControl: string;
}

Loading data

You can load any required data in web4_get by returning list of URLs to preload in preloadUrls field.

E.g. contract above preloads /web4/contract/guest-book.testnet/getMessages. This class getMessages view method on guest-book.testnet contract.

After data is preloaded web4_get gets called again with loaded data injected into preloads.

Posting transactions

You can post transaction by making a POST request to corresponding URL.

E.g contract above preloads has form that gets posted to /web4/contract/guest-book.testnet/addMessage URL. This URL submits transaction which calls addMessage method on guest-book.testnet contract.

Note that both JSON and form data are supported. When transaction is processed by server user gets redirected to wallet for signing this transaction.

In future there is a plan to allow sending app-specific key as a cookie to sign limited subset of transactions without confirmation in wallet.

Caching considerations

By default all HTML responses can be cached for 1 minute (assumed dynamic content). All images, videos, audio and CSS can be cached for 1 day (assumed static content).

You can override this by setting cacheControl field in response.

It's not recommended to cache content for too long as then it not going to be hot on IPFS gateway.

Rust support

Check out sample web4 project made with Rust.

near.page

You can access your deployed smart contract on https://near.page. This is hosted web4 gateway provided to all .near accounts. For now it's free, but in future you might have to pay depending on how much traffic you get.

Every contract gets corresponding domain, e.g. check out https://web4.near.page rendered by web4.near contract.

testnet.page

This works same as near.page but for contracts deployed on testnet. Every account.testnet gets corresponding account.testnet.page domain.

Running locally

  1. Install mkcert.
  2. Install local certificate authority (this allows browser to trust self-signed certificates):
    mkcert -install
  3. Create *.near.page SSL certificate:
    mkcert "*.near.page"
  4. Run web4 man-in-the-middle proxy locally:
    IPFS_GATEWAY_URL=https://ipfs.near.social NODE_ENV=mainnet WEB4_KEY_FILE=./_wildcard.near.page-key.pem WEB4_CERT_FILE=./_wildcard.near.page.pem npx web4-near
  5. Setup browser to use automatic proxy configuration file at http://localhost:8080/ or to use localhost:8080 as an HTTPS proxy server.

Environment variables

  • NODE_ENV - mainnet or testnet to select network ID to use with NEAR config and key store
  • IPFS_GATEWAY_URL - URL of IPFS gateway to use for ipfs:// URLs
  • WEB4_KEY_FILE - path to SSL key file
  • WEB4_CERT_FILE - path to SSL certificate file
  • PORT - port to listen on (default: 3000)
  • PROXY_PORT - port to listen on for proxy requests (default: 8080). HTTPS MITM proxy is run on this port when WEB4_KEY_FILE and WEB4_CERT_FILE are provided.
  • FAST_NEAR_URL - URL of fast-near RPC server to use for NEAR API. Overrides NEAR RPC config selected by NODE_ENV.

Priorities

This project aims to make trade offs based on these priorities:

  • Performance
  • Ease of deployment at scale
  • Hackability
  • Correctness
  • Completeness

Roadmap

  • Serve websites
    • [x] Serve arbitrary GET requests
    • [ ] Serve arbitrary POST requests
    • [x] Load content from HTTP URLs
    • [x] Load content from IPFS URLs
    • [x] Load content from NEARFS URLs
    • [ ] Load content from ArWeave URLs
    • [ ] Route configuration for better caching, etc
  • Access NEAR
    • [x] Access view calls via GET requests
    • [ ] Access view calls via POST requests
    • [x] Post transactions with POST through wallet redirect
    • [ ] Polish login and transaction flow with wallet
    • [ ] Support different wallets from wallet-selector
  • Decentralization
    • [x] Standalone server to run
    • [x] .near domain support through HTTPS MITM proxy
    • [x] Proxy auto-configuration file
    • [ ] User-friendly installer
    • [ ] Expose IPFS gateway on every .near.page website
    • [ ] Expose fast-near RPC on every .near.page website
  • Prepare for wider use
    • [x] Publish standalone package runnable with npx
    • [ ] Tests
    • [ ] Documentation
    • [ ] Landing page
    • [ ] Examples on different languages
    • [ ] More efficient binary-based API (web4_raw_get)
    • [x] Custom domain support
    • [ ] Abuse report system (token curated registry or smth like that)
    • [ ] Billing
  • Future direction
    • [x] Upload to IPFS and pin (see web4-deploy)
    • [ ] Upload to ArWeave
    • [ ] Built-in per user statsd, including over http
    • [ ] Pubsub protocol
    • [ ] Direct messages protocol
    • [ ] Indexer API
    • [ ] Private storage
    • [ ] Private messages
    • [ ] Voice API
    • [ ] web4 wallet
    • [ ] App launcher for wallet (pre-selecting necessary account in app)
    • [ ] Instant mobile apps using WebAssembly