
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.
@umatch/query
Advanced tools
Simple query builder for PostgreSQL. Inspired by knex.
Warning: security against injections or attacks of any kind is at an early stage of development. Use at your own risk, and parse user input beforehand.
where({ name: 'Bob' }) -> WHERE name = 'Bob'where({ content: null }) -> WHERE content IS NULLwhere({ created_at: new Date() }) -> WHERE created_at = '2023-01-01T00:00:00.000Z'where({ created_at: '> NOW()' }) -> WHERE created_at > NOW()leftJoin('users', { id: 'posts.user.id' }) -> LEFT JOIN users AS u ON u.id = posts.user_idexcludeJoin("posts", { user_id: "users.id" }) -> LEFT JOIN posts AS exclude_posts ON exclude_posts.user_id = users.id WHERE exclude_posts.user_id IS NULLI wanted something simple, yet intuitive, and with a better developer experience than knex. Some shortcomings I wanted to address were:
I probably didn't know. This is a learning experience for me and a work in progress, constantly evolving.
Tell me either way, I want to learn and improve! Feel free to open an issue or PR.
I actually made them up. I'm just trying to make this readme look more interesting. But I do hope they will be asked one day.
FAQs
Simple query builder for PostgreSQL. Inspired by knex.
The npm package @umatch/query receives a total of 30 weekly downloads. As such, @umatch/query popularity was classified as not popular.
We found that @umatch/query demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
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.