
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
crazyloader-nuxt
Advanced tools
Axios plugin for nuxt 2 to show Crazy Loading animation
This is just a regular plugin I made to display loading with a "percent animation" automatically. Created because the projects I work on often use Vuetify2 and Nuxt2. So instead of me making a "board loader" component for axios, yeah I think making this isn't too much haha. If you want to try it, make sure your project uses nuxt version 2 and vuetify version 2.
v-progress-circular componentMake sure the
@nuxtjs/axiosplugin and@nuxtjs/vuetifyis ready.
npm i crazyloader-nuxt
Load as a plugin in nuxt.config.js configuration
export default {
// ...
plugins: [
// ...
"~/node_modules/crazyloader-nuxt/@vuetify",
// ..
],
// ...
};
Example of usage in layout
layouts/default.vue
<template>
<v-app>
<!-- CrazyLoader component -->
<crazy-loader />
<v-main>
<!-- Main -->
<v-container fluid class="pt-0">
<nuxt />
</v-container>
</v-main>
</v-app>
</template>
<script>
export default {
created() {
// Sample axios request to show "CrazyLoader"
this.crazyRequest().then((r) => {
console.log(r.data)
})
},
methods: {
crazyRequest() {
return this.$axios.get('https://dummyjson.com/products')
}
}
}
</script>
| Options | Type | Default | Descripion |
|---|---|---|---|
| rotate | string/number | 360 | Rotate value |
| size | string/numver | 100 | Size value |
| width | string/number | 15 | Width value |
| color | string | #d6f037 | Color value |
| zIndex | string/number | 9999999 | z-index style value |
<crazy-loader
rotate="360"
size="100"
width="15"
color="#d6f037"
z-index="9999999"
/>
Just pull request :)
FAQs
Axios plugin for nuxt 2 to show "Crazy Loading" animation
We found that crazyloader-nuxt 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.