
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.
@evomark/evo-calendar
Advanced tools
A calendar and date picker plugin for Vue.js.
Vue.js 3.2+, Popper.js 2.0+ are required.
npm install @evomark/evo-calendar @popperjs/core
yarn add @evomark/evo-calendar @popperjs/core
:warning: All installation methods require manual import of component styles. This is due to Vite build restrictions in library mode.
import '@evomark/evo-calendar/style.css';
import { InstallEvoCalendar } from '@evomark/evo-calendar';
import '@evomark/evo-calendar/style.css';
// Use plugin with optional defaults
app.use(InstallEvoCalendar, {})
<!-- MyComponent.vue -->
<template>
<VCalendar />
<VDatePicker v-model="date" />
</template>
// main.js
import { setupCalendar, Calendar, DatePicker } from '@evomark/evo-calendar';
import '@evomark/evo-calendar/style.css';
// Use plugin defaults (optional)
app.use(setupCalendar, {})
// Use the components
app.component('VCalendar', Calendar)
app.component('VDatePicker', DatePicker)
<!-- MyComponent.vue -->
<template>
<VCalendar />
<VDatePicker v-model="date" />
</template>
// main.js
import { setupCalendar } from '@evomark/evo-calendar';
// Use calendar defaults (optional)
app.use(setupCalendar, {})
<!-- MyComponent.vue -->
<template>
<EvoCalendar />
<EvoDatePicker v-model="date">
</template>
<script>
import { EvoCalendar, EvoDatePicker } from '@evomark/evo-calendar';
import '@evomark/evo-calendar/style.css';
export default {
components: {
EvoCalendar,
EvoDatePicker,
},
data() {
return {
date: new Date(),
};
},
}
</script>
Please follow below mentioned steps to clone and build this project:
git clone https://github.com/evo-mark/evo-calendar
# Move to directory
cd evo-calendar
yarn
# Types, ES, ESM, CommonJS, IIFE
yarn build
yarn lint
# Types, ES, ESM, CommonJS, IIFE
yarn test
FAQs
A calendar and date picker plugin for Vue.js.
The npm package @evomark/evo-calendar receives a total of 4 weekly downloads. As such, @evomark/evo-calendar popularity was classified as not popular.
We found that @evomark/evo-calendar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.