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

@zesty-io/webengine-json

v0.1.1

Published

> Fetch WebEngine generated JSON data

Downloads

7

Readme

webengine-json

Fetch WebEngine generated JSON data

A package which orchestrates the URL formation and fetching of /-/headless/, /-/gql/ and ?toJSON endpoints. Additional documentation here.

  • domain: Any domain registered with an instance. The live and dev status determine what data is returned.
  • path: The path to the page you want to fetch a JSON representation of.
  • password: If a preview lock has been set on an instance it must be provided.

redirects(domain, password)


import { redirects } from "@zesty-io/webengine-json"

async function() {
    const json = await redirects('https://kfg6bckb-dev.webengine.zesty.io')
    console.log(json)
    // [
    //     {
    //         path: "/%20rel=",
    //         target: "/",
    //         code: "301",
    //     },
    //     ...
    // ]
}

routing(domain, password)


import { routing } from "@zesty-io/webengine-json"

async function() {
    const json = await routing('https://kfg6bckb-dev.webengine.zesty.io')
    console.log(json)
    // [
    //     {
    //         zuid: "7-31209c-g7qsjg",
    //         title: "Zesty.io: Simplify digital. Maximize results.",
    //         description:
    //         "Zesty is built for teams to manage and distribute content to multiple sites, devices, and anywhere else it needs to go.",
    //         uri: "/",
    //         path_part: "zesty_home",
    //         url: "https://kfg6bckb-dev.webengine.zesty.io/",
    //         locale: "en-US",
    //         hybrid_json_url: "https://kfg6bckb-dev.webengine.zesty.io/?toJSON",
    //     },
    //     ...
    // ]
}

gql(domain, password)


import { gql } from "@zesty-io/webengine-json"

async function() {
    const json = await gql('https://kfg6bckb-dev.webengine.zesty.io')
    console.log(json)
    // {
    //     "generation_time": "1688749992",
    //     "base": "https://kfg6bckb-dev.webengine.zesty.io",
    //     "schema": "https://kfg6bckb-dev.webengine.zesty.io/-/gql/zesty.schema",
    //     "dataSource": "https://kfg6bckb-dev.webengine.zesty.io/-/gql/datasource.js",
    //     "resolverObject": "https://kfg6bckb-dev.webengine.zesty.io/-/gql/resolvers.js",
    //     "models": [... array of model objects]
    // }
}

toJSON(domain, path, password)


import { toJSON } from "@zesty-io/webengine-json"

async function() {
    const json = await toJSON('https://kfg6bckb-dev.webengine.zesty.io', '/')
    console.log(json)
//    {
//     field1: "...",
//     field2: "...",
//     field3: "...",
//     meta: {
//         type: "item",
//         model_name: "homepage",
//         model_alternate_name: "Homepage",
//         zuid: "7-31209c-g7qsjg",
//         createdAt: "2023-04-26 00:12:00",
//         updatedAt: "2023-04-26 00:12:00",
//         listed: "1",
//         version: "431",
//         locale: {
//             id: "1",
//             name: "English (United States)",
//             code: "en-US",
//             default: "1",
//             active: "1",
//             enabled: "1",
//         },
//         model: {
//             type: "model",
//             zuid: "6-31079c-vdg69q",
//             name: "homepage",
//             label: "Homepage",
//             resourceURI:
//                 "https://kfg6bckb-dev.webengine.zesty.io/-/instant/6-31079c-vdg69q.json",
//         },
//         web: {
//             url: "https://kfg6bckb-dev.webengine.zesty.io/",
//             uri: "/",
//             fragment: "zesty_home",
//             canonical_tag_mode: "1",
//             sitemap_priority: "-1.0",
//             sitemap_last_updated: "2023-04-26 00:12:00",
//             canonical_query_param_whitelist: null,
//             canonical_tag_custom_value: null,
//             seo_link_text: "Homepage",
//             seo_meta_title: "Zesty.io: Simplify digital. Maximize results.",
//             seo_meta_description:
//                 "Zesty is built for teams to manage and distribute content to multiple sites, devices, and anywhere else it needs to go.",
//             seo_meta_keywords: null,
//         },
//     }