
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
The Checkly CLI gives you a JavaScript/TypeScript-native workflow for coding, testing and deploying synthetic monitoring at scale, from your code base. We call this workflow monitoring as code (MaC).
@playwright/test support. No lock-in, just write standard *.spec.ts files.Monitoring checks are written by instantiating constructs from the checkly/constructs package...
// books-api.check.ts
import { ApiCheck, AssertionBuilder } from 'checkly/constructs'
new ApiCheck('books-api-check-1', {
name: 'Books API',
request: {
url: 'https://danube-web.shop/api/books',
method: 'GET',
assertions: [
AssertionBuilder.statusCode().equals(200),
AssertionBuilder.jsonBody('$[0].id').isNotNull(),
],
}
})
For browser checks, you can just write standard *.spec.ts files using @playwright/test.
// home.spec.ts
import { test, expect } from '@playwright/test'
test('webshop homepage', async ({ page }) => {
const response = await page.goto('https://danube-web.shop')
expect(response?.status()).toBeLessThan(400)
await expect(page).toHaveTitle(/Danube WebShop/)
await page.screenshot({ path: 'homepage.jpg' })
})
Run your checks from your local machine or in CI using npx checkly test
npx checkly test
Parsing your project... done
Running 2 checks in eu-west-1.
__checks__/books-api.check.ts
✔ Books API 1 (52ms)
__checks__/home.spec.ts
✔ home.spec.ts (5s)
2 passed, 2 total
Now deploy your checks to the Checkly cloud so they can monitor your apps and APIs around the clock and alert you when things break.
npx checkly deploy
Parsing your project... done
Successfully deployed project "Acme webapp" to account "Acme Production".
First, make sure you sign up for a free Checkly account or signup via the terminal using
npx checkly login.
Then, the easiest way to get started is to install the CLI using the following command:
npm create checkly
This command will guide you through some simple steps and set up a fully working example project for you. Should take ~1 minute.
You can also set up the CLI from scratch by running:
npm install --save-dev checkly
Official docs are over at checklyhq.com/docs/cli
Use CHECKLY_CLI_VERSION environment variable to set the latest version you want to test.
To get started with local development check CONTRIBUTING.MD
FAQs
Checkly CLI
The npm package checkly receives a total of 57,140 weekly downloads. As such, checkly popularity was classified as popular.
We found that checkly demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.