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

@chrisbielak/svg-module

v0.1.8

Published

Super simple svg loading module for Nuxt.js, Fork for testing raw loader

Downloads

4

Readme

@chrisbielak/svg-module

forked from https://github.com/nuxt-community/svg-module

_Super simple svg loading module for Nuxt.js

📖 Release Notes

Introduction

SVG module for Nuxt.js, allows you to import .svg files in multiple ways depending on the resource query you provide. Currently, this allows you to do the following:

  • file.svg - normal import using file-loader
  • file.svg?data - base64 data url import using url-loader
  • file.svg?inline - inline import using vue-svg-loader

Installation

Using Yarn: /**

  • This is the original RegExp cloned from the original Nuxt.js configuration
  • files, with only the search for ".svg" files removed. Keep tabs on this in
  • case the core decides to add additional qualifiers to the pattern. */ const ORIGINAL_TEST = /.(png|jpe?g|gif|svg|webp)$/; const REPLACEMENT_TEST = /.(png|jpe?g|gif|webp)$/;
yarn add @chrisbielak/svg-module

Using NPM:

npm install @chrisbielak/svg-module
// nuxt.config.js
export default {
  modules: [
    '@chrisbielak/svg-module'
  ]
};

And that's it! You don't have to install anything else, you're ready to go.

Usage

The usage examples are documented as:

<!-- Nuxt.js code -->
<!-- Outputted html -->

Standard external import

Import normally as an external resource using file-loader

<template>
  <img src="~assets/nuxt.svg" />
</template>
<img src="/_nuxt/9405b9978eb50f73b53ac1326b93f211.svg" />

Inline base64 url

Inline as a URL (no external requests) using url-loader

<template>
  <img src="~assets/nuxt.svg?data" />
</template>
<img src="data:image/svg+xml;base64,P...2h913j1g18h98hr" />

Inline svg element

Inline as an actual svg element using vue-svg-loader

<template>
  <NuxtLogo />
</template>

<script>
  import NuxtLogo from "~/assets/nuxt.svg?inline";

  export default {
    components: {
      NuxtLogo
    }
  };
</script>
<svg xmlns="http://www.w3.org/2000/svg"><path></path></svg>

Raw SVG loader

Load the raw SVG data using raw-loader. Useful if anything in the SVG needs to be modified

<template>
  <div v-html="rawSvg" />
</template>

<script>
  import nuxtLogoRaw from '~/assets/nuxt.svg?raw'

  export default {
    data () {
      return {
        rawSvg: nuxtLogoRaw
      }
    }
  };
</script>

Caveats

In order for this module to work correctly, the default .svg Nuxt.js webpack rule gets replaced with this handler.

The only difference between this and the handler is that there is no limit for when file-loader replaces url-loader.

So when using the ?data query, it will always use url-loader regardless of file size, and when not using either resource query, it will always use file-loader).

Contributing

As this loader attempts to abstract webpack configuration from the process and make it easier to use multiple svg loaders, any contributions that add more svg loader methods to the configuration will be accepted wholeheartedly!

Also I'll be actively maintaining this project so if you'd rather just make a request for a loader or a feature; I'd be happy to take a look and see what I can do myself :)

License

MIT License

Copyright (c) Sam Holmes