
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Chekhov Js Framework
The first thing you'll need when using ch.js is the values object
let values =
{
all_kinds_of_data_you_need: all_the_values_you_need
}
new Chekhov()
like this
let ch = new Chekhov({
reactive: {
// That's an example of a computed property
msg: function () {
if (values.name == "")
return "What's your name?"
else
return `Bye ${values.name}! It was Great to meet you!`
}
}
}, values)
but it still provides some handy shortcuts
<div ch-for linked="array" trigger="_iterator">
<h1 class="central" ch-bind>{{iterator}}</h1>
</div>
for repeating something a few times but it requires setting up a computed property, that's pretty easy though
_iterator: function (i) {
return values.array[i]
}
There's also ch-if
<li ch-if linked="value">To display or not to display 💀</li>
<button ch-model trigger="click" linked="switch">Continue</button>
to call the linked method when the trigger event happens
<input ch-model linked="name" dep="msg" trigger="input"/>
is used for calling the linked method when the trigger event happens
<h1 ch-bind>{{some_value}}</h1>
which binds the inner value of the element to the property or a value contained in ch.data (e.g. ch.data.msg)
FAQs
Chekhov Js
The npm package chekhov receives a total of 3 weekly downloads. As such, chekhov popularity was classified as not popular.
We found that chekhov 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.