Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@webbio/strapi-plugin-scheduler
Advanced tools
A plugin to publish or depublish content types in the future.
Strapi Plugin to schedule publish and depublish actions for any collection type.
Schedule when you want to publish your content
Choose the date and time of publication and choose when to archive your page
That's it!
To install the plugin run npm i @webbio/strapi-plugin-scheduler
or yarn add @webbio/strapi-plugin-scheduler
.
After the plugin is installed, add the plugin to the plugins.js file in your config folder.
scheduler: {
enabled: true,
config: {
contentTypes: {
'api::page.page': {}
}
}
},
Set the initial archive date and initial publish date in the plugin settings. These dates will automatically be set when creating a new page.
scheduler: {
enabled: true,
resolve: './src/plugins/strapi-plugin-scheduler',
config: {
'api::page.page': {
initialPublishAtDate: setMonth(
new Date(),
new Date().getMonth() + 1
).toDateString(),
initialArchiveAtDate: setMonth(
new Date(),
new Date().getMonth() + 3
).toDateString(),
},
},
},
Now when you run your application, the addon will be added to the sidebar. You can choose a date and time to publish or archive your article.
FAQs
A plugin to publish or depublish content types in the future.
The npm package @webbio/strapi-plugin-scheduler receives a total of 602 weekly downloads. As such, @webbio/strapi-plugin-scheduler popularity was classified as not popular.
We found that @webbio/strapi-plugin-scheduler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.