devcourse_skeleton is a lightweight Node.js package for dynamically generating SQL queries (SELECT, INSERT, UPDATE, DELETE) with support for subqueries via a literalize helper. Current version 0.0.11, released as an early-stage project with no recent updates. It provides validation and error handling for query inputs. Unlike full ORMs like Sequelize or TypeORM, it focuses on simple string-building with safety checks, suitable for small projects or learning SQL generation. However, the package is minimal, lacks TypeScript support, and has no clear release cadence.
npm install devcourse_skeletonNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to instantiate Skeleton with a MySQL connection and perform a SELECT query.
Set type: 'module' in package.json or use import syntax.
Create a declaration file or use 'any' type.
Consider mature alternatives like knex.js or sequelize.
Use import syntax or rename file to .mjs.
import Skeleton from 'devcourse_skeleton' (no curly braces).
npm install mysql