
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@itheum/react-schedule-it
Advanced tools
The react scheduling ui component of the Itheum platform
is the react scheduling ui component of the Itheum platform

npm installnpm run build to transpile the jsx into distnpm run build-example builds and packs the example app into the 'docs' folder so it can be accessed via ghpagesthe implement in the data model can use ISO day of week to describe days . e.g. 1-2-3-4-5-6-7 (ISO Day of Week - where 1 is Monday)] e.g for thursday and sunday it will be 4-7
this works well with libraries like moment.js
implement: Type - String
daily: happens everyday1-2-3-4-5-6-7: ISO Day of Week - 1 is Monday, can be a subset of this string (e.g thursday and sunday it will be 4-7)am / pm : Type - Array of Strings
12 hour format time strings - e.g. "7:00" or "9:15"minAm / minPm: Type - Int
minimum number of responses - e.g. 1 for minAm means that that at least 1 reading should be given in the AM{
"implement": "daily",
"am": ["7:00"],
"pm": ["8:00"],
"minAm": 1,
"minPm": 1
}
Note: daily is like an alias for 1-2-3-4-5-6-7 so we will support these both
{
"implement": "4-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "1-2-3-4-5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "daily",
"am": ["8:00"],
"pm": ["7:00", "8:00"],
"minAm": 1,
"minPm": 1
}
{
"implement": "1-2-3-4-5-6-7",
"am": ["7:00"],
"pm": ["8:00"],
"minAm": 1,
"minPm": 1
}
Note: same as using alias daily for implement (see example 1)
{
"via": "forthnightly",
"implement": "4-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "forthnightly",
"implement": "1-2-3-4-5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "forthnightly",
"implement": "6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "first",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "first:1",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last:5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last:1-2-3-4-5-6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
npm install --save react-schedule-it
import ScheduleIt from "react-schedule-it";
name indicates the title of the UI step and component is what loads.FAQs
The react scheduling ui component of the Itheum platform
We found that @itheum/react-schedule-it 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.