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

node-sass-js-importer

v5.0.0

Published

Allows importing CommonJS modules in Sass files parsed by node-sass.

Downloads

202

Readme

node-sass-js-importer

Tests Version on npm

JavaScript data importer for sass (originally for the now deprecated node-sass, hence the package name).

This allows @importing/@useing .js/.mjs/.cjs files in Sass files parsed by sass.

This is a fork of the node-sass-json-importer repository, adjusted for usage with JavaScript files.

Setup

sass

This module hooks into sass' importer api.

const sass = require('sass')
const { jsImporter } = require('node-sass-js-importer')

// Example 1
sass.render({
  file: scss_filename,
  importer: jsImporter,
  // ...options
}, (err, result) => { /*...*/ })

// Example 2
const result = sass.renderSync({
  data: scss_content
  importer: [jsImporter, someOtherImporter]
  // ...options
})

Webpack / sass-loader

Webpack v1

import { jsImporter } from 'node-sass-js-importer'

// Webpack config
export default {
  module: {
    loaders: [
      {
        test: /\.scss$/,
        loaders: ['style', 'css', 'sass']
      }
    ]
  },
  // Apply the JS importer via sass-loader's options.
  sassLoader: {
    importer: jsImporter
  }
}

Webpack v2 and upwards

import { jsImporter } from 'node-sass-js-importer'

// Webpack config
export default {
  module: {
    rules: [
      test: /\.scss$/,
      use: [
        'style-loader',
        {
          loader: 'css-loader',
          options: {
            importLoaders: 1
          },
        },
        {
          loader: 'sass-loader',
          // Apply the JS importer via sass-loader's options.
          options: {
            importer: jsImporter,
          },
        },
      ],
    ],
  },
}

Usage

Given the following colors.mjs file:

export default {
  primary: 'blue',
  secondary: 'red'
}

The importer allows your Sass file in the same folder to do this:

@import 'colors.mjs';

.some-class {
  background: $primary;
}

Note that @import is somewhat deprecated and you should use @use instead:

@use 'colors.mjs';

.some-class {
  // Data is automatically namespaced:
  background: colors.$primary;
}

To achieve the same behavior as with @import, you can change the namespace to *:

@use 'colors.mjs' as *;

.some-class {
  // Colors are no longer namespaced:
  background: $primary;
}

Importing strings

As JavaScript values don't map directly to Sass's data types, a common source of confusion is how to handle strings. While Sass allows strings to be both quoted and unqouted, strings containing spaces, commas and/or other special characters have to be wrapped in quotes.

The importer will automatically add quotes around all strings that are not valid unquoted strings or hex colors (and that are not already quoted, of course):

Input | Output | Explanation -|-|- { color: 'red' } | $color: red; | Valid unquoted string { color: '#f00' } | $color: #f00; | Valid hex color { color: "'red'" } | $color: "red"; | Explicitly quoted string { color: "really red" } | $color: "really red"; | Valid unquoted string

Module Formats

The importer supports both CommonJS and ES modules through explicit file extensions (.cjs, .mjs). If you're using a .js extension, the importer will use the same default as the node runtime does (i.e. depending on your package.json's module field).

Map Keys

Map keys are always quoted by the importer:

// colors.mjs
export default {
  colors: {
    red: '#f00'
  }
}
@use 'colors.mjs' as *;

:root {
  // This does not work:
  color: map-get($colors, red);

  // Do this instead:
  color: map-get($colors, 'red');
}

Credit

The initial implementation of this importer was based on the node-sass-json-importer package.