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

navify

v0.1.6

Published

[![npm version](https://img.shields.io/npm/v/navify.svg?style=flat-square)](https://www.npmjs.com/package/navify) [![npm total downloads](https://img.shields.io/npm/dt/navify.svg?style=flat-square)](https://www.npmjs.com/package/navify) [![License](https:

Downloads

1

Readme

Navify

npm version npm total downloads License

🌏 An elegant website navigation page generator. Let us call it Navify .

README中文版

How to use navify

1. Global install navify with npm

$ npm install -g navify

2. Usage

2.1 Create and initialize a navify project

$ navify create <dir>

Enter the above command, will automatic generated these files, index.html and nav.json in your <dir> directory.

2.2 Development

$ cd <dir>
$ navify serve

Browser will open automatically http://localhost:8520

2.3 index.html Configuration

<script>
  window.Navify = {
    el: '#app',
    json: './nav.json',
    title: {
      alias: 'FE',
      full: 'Web FE checklist',
      en: 'FE',
    },
    author: {
      name: 'Cong Min',
      link: 'https://congm.in',
    },
    github: 'https://github.com/whelmin/navify',
    // Customized icon
    // key is the icon, value is the icon url
    icon: {
      'share': 'https://.../share.png',
    },
    favicon: 'https://www.google.cn/s2/favicons?domain=',
    // favicon: 'https://api.byi.pw/favicon/?url='
  };
</script>

| name | type | description | default | |:----:|:----------:|:---------|:----| | el | String | the mounted element | '#app' | | json | String | json source local relative path or network link | './nav.json' | | title | String/Object | site info | | author | String/Object | author info | null | | github | String | Github link After setting, the Github logo will appear in the upper right corner of the page. | null | | icon | Object | customized icon | {} | | favicon | String | favicon 'https://api.byi.pw/favicon/?url=' or 'https://www.google.cn/s2/favicons?domain=' |

2.4 nav.json

You should follow the below rules and formats to add, delete, and modify the json source.

// nav.json
// List - category
[
  {
    "heading": "category title",
    "info": "category info",
    "content": [
      ...
    ]
  },
  {
    ...
  }
]
// List[n].content
// Group - group
[
  {
    "title": "group title",
    "info": "group info",
    "item": [
      ...
    ]
  }
]
// Group[m].item
// Item - item
[
  {
    "name": "item title",
    "info": "item info",
    "link": {
      "home": "item website links",
      "github": "item github links"
    }
  }
]

the complete example:

[
  {
    "heading": "category 1",
    "content": [
      {
        "item": [
          {
            "name": "item name 2",
            "info": "item info 2",
            "link": {
              "home": "item website links 2",
              "github": "item github links 2",
            }
          }
        ]
      }
    ]
  },
  {
    "title": "group 1",
    "item": [
      {
        "name": "item name 1",
        "link": {
          "home": "item website links 1"
        }
      }
    ]
  }
]

3. Deployment

3.1 Web server

set <dir> folder in Web server or use Github Pages to deploy.

3.2 Github Pages

There're three places to deploy navify website for your Github repository:

  • docs/ folder

  • master branch

  • gh-pages branch

in your Github repository' settings page, choose the master branch and save, and you can bind a custom domain name with CNAME .

GitHub Pages Screenshot

About

Contributors

@ whelmin & @ Cong Min

License

MIT License