
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
nuxt-formkit-tempo
Advanced tools
The easiest way to work with dates in Nuxt 3. The unofficial Nuxt module port of @formkit/tempo 🕑.
npx nuxi@latest module add nuxt-formkit-tempo
That's it! You can now use nuxt-formkit-tempo in your Nuxt application ✨
<template>
<div style="display: grid; height: 100vh; width: 100vw; place-items: center;">
<ClientOnly>
{{ newDate }}
</ClientOnly>
</div>
</template>
<script setup lang="ts">
const now = new Date()
const newDate = useFormat(now, 'full')
</script>
The nuxt-formkit-tempo
module allows you to add prefixes and aliases to the utilities and helpers provided by the @formkit/tempo
package.
Below is how you can configure and use them in your Nuxt 3 project:
export default defineNuxtConfig({
modules: ['nuxt-formkit-tempo'],
devtools: { enabled: true },
tempo: {
prefix: 'use',
alias: [
['format', 'formatDate'],
],
},
})
then in your component:
<template>
<div style="display: grid; height: 100vh; width: 100vw; place-items: center;">
<ClientOnly>
{{ newDate }}
</ClientOnly>
</div>
</template>
<script setup lang="ts">
const now = new Date()
const newDate = useFormatDate(now, { date: 'medium', time: 'short' })
</script>
Below are the types of the tempo
config:
Prop | Type | Description | Default |
---|---|---|---|
prefix | string | Keyword placed infront of the utilities and helpers. | '' |
alias | [string, string][] | A unique name assigned to a utility to avoid naming conflicts with other third-party packages and libraries. | [] |
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release
FAQs
The easiest way to work with dates in Nuxt 3. The unofficial Nuxt module port of @formkit/tempo 🕑.
We found that nuxt-formkit-tempo demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.