
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.
Blanked is a Nuxt module to improve your Nuxt workflow. It's a simple module to add everything you need to your Nuxt app, including:
From
{
"name": "new-blanked-project",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate"
},
"devDependencies": {
"nuxt": "latest",
"@nuxtjs/color-mode": "latest",
"@nuxtjs/tailwindcss": "latest",
"@nuxt/fonts": "latest",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@egoist/tailwindcss-icons": "^1.7.2",
"@iconify-json/heroicons": "^1.1.19",
"@iconify-json/lucide": "^1.1.154",
"tailwindcss": "^3.4.1",
"nuxt-icon": "^0.6.8",
"vue-sonner": "^1.0.3",
"@vueuse/nuxt": "^1.0.0",
"@floating-ui/vue": "^1.0.6"
}
}
To
{
"name": "new-blanked-project",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate"
},
"devDependencies": {
"nuxt": "latest",
"blanked": "latest"
}
}
To get started, follow these steps:
blanked
dependency to your project# Using bun
bun install -D blanked
# Using pnpm
pnpm add -D blanked
# Using yarn
yarn add --dev blanked
# Using npm
npm install --save-dev blanked
blanked
to the modules
section of nuxt.config.ts
export default defineNuxtConfig({
modules: [
'blanked'
]
})
Thanks to @egoist/tailwindcss-icons plugin, only the icons you use in your app will be bundled in your CSS. However, you need to install the icon collections you specified in the blanked.icons key:
bun i -D @iconify-json/{collection_name}
To use the toast component, you need to add the <Toasts />
component in your app. You can add it in your layouts/default.vue
or app.vue
file for example.
To render the toasts, you need to use the toast()
function.
For more information, check the Vue Sonner documentation.
That's it! You can now use Blanked in your Nuxt app ✨
Blanked Module
This module is heavily inspired by the NuxtUI module, which embeds TailwindCSS, Color Mode and Icons in your Nuxt app. However, I wanted to make a module to start a Nuxt project without the components, etc...
FAQs
A Nuxt module to speed up your development
The npm package blanked receives a total of 2 weekly downloads. As such, blanked popularity was classified as not popular.
We found that blanked 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.