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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hypernova-amp

v3.2.0

Published

Aphrodite bindings for Hypernova

Readme

hypernova-amp

Aphrodite bindings for Hypernova for rendering AMP pages.

Install

npm install hypernova-amp

Usage

Here's how use use it in your module:

import { renderReactAmpWithAphrodite } from 'hypernova-amp';
import MyComponent from './src/MyComponent.jsx';

export default renderReactAmpWithAphrodite(
  'MyComponent.hypernova.js', // this file's name (or really any unique name)
  MyComponent,
  {/* Options */},
);

Options

prependCSS (string)

Inserts css before the generated CSS.

appendCSS (string)

Inserts css after the generated CSS.

enableAmpBind (bool)

Set to true to enable amp-bind. Default: false. This will transform any attribute named amp-bind-x into an attribute named [x]. This is necessary because react does not support [x] prop even in conjunction with is (see next section).

enableRemoveIs (bool)

Utilizes regex to remove is attribute. React has an undocumented is prop that when added to an element, prevents React from transforming/filtering props that you add to the element. Any prop that you add will be added as an attribute with the same name. For example, adding a class prop to a <div> will add a class attribute to the <div>. This also means that adding a className prop will not do what you normally would expect it to do. You'll want to add the is prop when using amp-bind-class together with class, for example. However, the problem arises where the is attribute is also added to the element which causes an AMP validation error. Enabling the enableRemoveIs option will remove the is attribute and thus eliminate the validation error.

Here's an example which utilizes enableAmpBind and enableRemoveIs:

<div
  is
  amp-bind-class={`showThing ? '${thingClass} ${thingOpenClass}' : '${thingClass}'`}
  class={ampSearchBarClass}
>
  ...
</div>

... elsewhere you might have a button like this:

<div
  is
  role="button"
  on="tap:AMP.setState({ showThing: !showThing })"
  tabindex="0"
>
  Toggle Thing Component
</div>

scripts (array)

Each element of the array is an object with any of the following values:

  • scripts.customElement (string)
  • scripts.customTemplate (string)
  • scripts.src (string):

ampExperimentToken (string)

Adds amp-experiment-token meta tag with token.

title (string)

Page title

canonicalUrl (string)

Adds meta tag with canonical URL.

jsonSchema (object)

Adds json schema meta tag.

ampState (object)

Adds amp-state tag.

ampAnalytics (object)

Adds amp-analytics tag

ampGoogleAnalytics (object)

Adds amp-analytics (google type) tag

Publishing a new release

  • Add entry to CHANGELOG.md
  • Make a commit, directly onto master, that does nothing but adds/updates the changelog and bumps package.json, with a commit message of “vX.Y.Z"
  • git tag vX.Y.Z
  • git push --tags
  • wait for travis to pass
  • npm install && npm test && npm publish