
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
grapesjs-component-countdown
Advanced tools
Simple countdown component for GrapesJS Editor
grapesjs-component-countdown
countdown
countdown
Option | Description | Default |
---|---|---|
id | The ID used to create the block and component. | countdown |
label | The label used for the block and the component. | Countdown |
block | Object to extend the default block, eg. { label: 'Countdown', category: 'Extra', ... } . Pass a falsy value to avoid adding the block. | {} |
props | Object to extend the default component properties., eg. { name: 'Countdown', droppable: false, ... } . | {} |
style | Custom CSS styles for the component. This will replace the default one. | '' |
styleAdditional | Additional CSS styles for the component. These will be appended to the default one. | '' |
startTime | Default start time, eg. 2030-01-25 00:00 . | '' |
endText | Text to show when the countdown is ended. | 'EXPIRED' |
dateInputType | Date input type, eg. date , datetime-local | 'date' |
labelDays | Days label text used in component. | 'days' |
labelHours | Hours label text used in component. | 'hours' |
labelMinutes | Minutes label text used in component. | 'minutes' |
labelSeconds | Seconds label text used in component. | 'seconds' |
classPrefix | Countdown component class prefix. | 'countdown' |
https://unpkg.com/grapesjs-component-countdown
npm i grapesjs-component-countdown
git clone https://github.com/artf/grapesjs-component-countdown.git
Directly in the browser
<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-component-countdown.min.js"></script>
<div id="gjs"></div>
<script type="text/javascript">
var editor = grapesjs.init({
container : '#gjs',
// ...
plugins: ['grapesjs-component-countdown'],
pluginsOpts: {
'grapesjs-component-countdown': { /* options */ }
}
});
</script>
Modern javascript
import grapesjs from 'grapesjs';
import pluginCountdown from 'grapesjs-component-countdown';
const editor = grapesjs.init({
container : '#gjs',
// ...
plugins: [pluginCountdown],
pluginsOpts: {
[pluginCountdown]: { /* options */ }
}
// or
plugins: [
editor => pluginCountdown(editor, { /* options */ }),
],
});
Clone the repository
$ git clone https://github.com/artf/grapesjs-component-countdown.git
$ cd grapesjs-component-countdown
Install it
$ npm i
Start the dev server
$ npm start
Build before the commit. This will also increase the patch level version of the package
$ npm run build
BSD 3-Clause
FAQs
Simple countdown component for the GrapesJS Editor
The npm package grapesjs-component-countdown receives a total of 5,024 weekly downloads. As such, grapesjs-component-countdown popularity was classified as popular.
We found that grapesjs-component-countdown 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.