
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.
ck-datepicker
Advanced tools
Production-grade DatePicker with zero dependencies. Modular architecture with slots and hooks.
Production-grade DatePicker with zero dependencies. Modular architecture with slots, hooks, and plugin support.
npm install ck-datepicker
import { BWDatePicker } from "ck-datepicker";
import "ck-datepicker/css";
const picker = new BWDatePicker("#date-input");
Plugins are separate packages:
npm install @bw-ui/plugin-disable-weekends
npm install @bw-ui/plugin-min-max-date
import { BWDatePicker } from "ck-datepicker";
import { DisableWeekendsPlugin } from "@bw-ui/plugin-disable-weekends";
import { MinMaxDatePlugin } from "@bw-ui/plugin-min-max-date";
const picker = new BWDatePicker("#date")
.use(DisableWeekendsPlugin)
.use(MinMaxDatePlugin, {
min: new Date(),
max: new Date(2025, 11, 31),
});
const picker = new BWDatePicker(element, options);
| Option | Type | Default | Description |
|---|---|---|---|
initialDate | Date | null | Pre-selected date |
format | string | 'MMM D, YYYY' | Display format |
slots | object | {} | Custom slot renderers |
plugins | array | [] | Plugins to install |
picker.open(); // Open picker
picker.close(); // Close picker
picker.getSelectedDate(); // Get selected date
picker.setSelectedDate(d); // Set selected date
picker.use(Plugin, opts); // Install plugin
picker.destroy(); // Cleanup
picker.on("date:select", ({ date }) => {});
picker.on("picker:open", () => {});
picker.on("picker:close", () => {});
| Package | Description |
|---|---|
@bw-ui/plugin-disable-weekends | Disable Saturday & Sunday |
@bw-ui/plugin-min-max-date | Restrict to date range |
MIT © BW UI
FAQs
Production-grade DatePicker with zero dependencies. Modular architecture with slots and hooks.
We found that ck-datepicker 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
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.