Core SQL query building utilities for TypeScript projects. Currently at version 0.1.3 with weekly releases. Provides type-safe query construction without runtime dependencies. Differentiates from knex by being more lightweight and TypeScript-first, but is pre-1.0 and should be considered experimental.
npm install sql-coreNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic usage of tagged template SQL and query building with the simple API.
Pin to exact version and lockfile to avoid breaking changes on minor/patch bumps.
Change imports to 'query-core'.
Use built-in function for identifiers: `sql`SELECT * FROM ${escapIdentifier('users')}`Install with `npm install query-core` and ensure tsconfig.json includes `"moduleResolution": "node"` or `"node16"`.
Change `import sql from 'query-core'` to `import { sql } from 'query-core'`.Check available exports with `import * as qc from 'query-core'` and use correct symbol name.
No dependency data recorded yet.