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

vanilla-loader

v0.2.1

Published

Webpack loader for loading Vanilla Spec based packages.

Downloads

5

Readme

vanilla-loader

code style: prettier

Webpack loader for loading Vanilla Spec based packages.

What is Vanilla Spec?

Vanilla Spec is a dummy specification that I created for specifying a certain file struture of packages.

If a package contains optional files:

  • js/index.js
  • scss/index.scss

Then, we say the package is following Vanilla Spec.

For example:

dummy/
├── js
│   └── index.js
└── scss
    └── index.scss

Why Vanilla Spec?

Not everything is suitable for React, Vue, etc. In some situations, I would like to write web pages in old school way.

But old school way isn't convenient when importing packages. If a package contains stylesheets and javascripts, I have to import them separately like this:

import 'path/to/package1/dist/index.scss'
import 'path/to/package1/dist/index.js

import 'path/to/package2/dist/index.scss'
import 'path/to/package2/dist/index.js

And, there's another con of this way. The SCSS files of different packages can't share variables.

Solution

Given there's two packages following Vanilla Spec that I wanna import.

Create a file called vanilla.spec:

path/to/package1
path/to/package2

Vanilla-loader loads this file, checks the existence of sytlesheets and javascripts, tranforms it into contents in SCSS or ES2015:

// SCSS content
@import 'path/to/packages1/scss/index.scss';
@import 'path/to/packages2/scss/index.scss';
// ES2015 content
import 'path/to/packages1/js/index.js'
import 'path/to/packages2/js/index.js'

Then, use other Webpack loaders to load these contents.

Installation

npm install vanilla-loader

Usage

A possible Webpack configuration snippet:

module.exports = () => ({
  // ...
  module: {
    rules: [
      // ...
      {
        test: /vanilla\.spec$/,
        oneOf: [
          {
            resourceQuery: /scss/,
            use: [
              MiniCSSExtractPlugin.loader,
              'css-loader',
              {
                loader: 'postcss-loader',
                options: {
                  plugins: [autoprefixer()],
                },
              },
              {
                loader: 'sass-loader',
                options: {
                  implementation: sass,
                  sourceMap: true,
                  sourceMapContents: false,
                },
              },
              {
                loader: 'vanilla-loader',
                options: {
                  type: 'scss',
                },
              },
            ],
          },
          {
            resourceQuery: /js/,
            use: [
              {
                loader: 'babel-loader',
              },
              {
                loader: 'vanilla-loader',
                options: {
                  type: 'js',
                },
              },
            ],
          },
        ],
      },
    ],
  },
})

Import spec file in Webpack's entry:

import './vanilla.spec?scss'
import './vanilla.spec?js'

That's all.

Available Options

| name | value type | values | description | | ------- | ---------- | ----------------- | ---------------------------------- | | type | string | 'js' / 'scss' | specify the type of transformation | | debug | boolean | true / false | toggle debug function |

License

MIT © m31271n