
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Super simple svg loading module for Nuxt.js
nuxt-svg
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
npm install nuxt-svg
// nuxt.config.js
export default {
modules: ["nuxt-svg"]
};
And that's it! You don't have to install anything else, you're ready to go.
The usage examples are documented as:
<!-- Nuxt.js code -->
<!-- Outputted html -->
Import normally as an external resource using file-loader
<template>
<img src="~assets/nuxt.svg" />
</template>
<img src="/_nuxt/9405b9978eb50f73b53ac1326b93f211.svg" />
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 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>
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
).
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 :)
FAQs
Super simple svg loading module for Nuxt.js
The npm package nuxt-svg receives a total of 178 weekly downloads. As such, nuxt-svg popularity was classified as not popular.
We found that nuxt-svg demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.