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

now-loader

v0.0.2

Published

A webpack loader that triggers a now.sh deployment on the required file/dir, and returns to url to the deployment

Downloads

5

Readme

Webpack Now Loader

Webpack loaders are super cool. You can extract away a require statement at compile time, and do what you want with the file. I thought deploying the required file statically to Now, and using the deployed url at runtime could lead to some cool developer benefits.

For example, in your React file:

const picture = require('now-loader!picture.png');
const resume = require('now-loader!resume.pdf');

...

<div>
  <img src={picture} alt="A picture of me"/>
  <a href={resume}>Get my resume</a>
</div>

This way, when you run webpack, the loader deploys the picture and the resume, retrieves a now.sh deployment url, and then your codebase hotlinks to them. There seems to be an unnescessary level of indirection here, but consider these:

  • Your static resources are now hosted individually and have shareable links to them. For instance, I use this on my website(pranay.gp) so that my Resume is hosted and accessible from its own deployment (resume.pranay.gp)
  • You can update static dependencies without having to update your website. Using the alias webpack option, the loader can automatically alias your deployment right after creating it, and return the aliased URL instead. That way, in the future, if you build your site again with an updated static resource, it will deploy and alias it correctly, and you don't have to actually re-deploy your website

But that's not all. Here's what I personally think is the coolest thing you can do with it (Works, but still in super super alpha)

const APIendpoint = require('now-loader!../test-backend/package.json');

fetch(APIendpoint + '/foo').then(console.log)

On your client codebase, you can simply "require" your entire backend codebase (by either requiring the root package.json, now.json or Dockerfile in your backend codebase). When you run webpack, it'll deploy the latest version of your backend to now, and return the URL to that so you can just use it throughout your client codebase without having to configure (or worse, hardocde the url on) your frontend.

Install

yarn add --dev now-loader
# npm install --save-dev now-loader

You likely want to use now-loader inline, and not in your webpack.config, but you can use the following rule in your config for full deployments :D

   {
     test: /(now.json|package.json|Dockerfile)/,
     loader: 'now-loader'
   }