npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@destacks/sql

v0.2.0

Published

Archived: Simple SQL querying using template literals with optional Zod schema validation.

Downloads

10

Readme

:warning: ATTENTION: THIS PACKAGE HAS UNSOLVED PROBLEMS, IS THEREFORE ABANDONED, AND ARCHIVED. BETTER DON'T USE IT.

@destacks/sql

Simple SQL querying using template literals with optional Zod schema validation.

Overview

@destacks/sql executes SQL queries using template literals with an optional Zod schema validation feature. It builds upon @libsql/client and sql-template-tag to offer templated database interactions, with optional TypeScript static typing, and runtime data validation.

Features

  • SQL Query Execution: Execute SQL queries against libSQL (SQLite-like) databases.
  • Configuration Flexibility: Supports local, remote, and hybrid database configurations.
  • Zod Schema Validation: Optional integration for TypeScript static typing and runtime data validation.
  • Support for Multiple Environments: Compatible with Node.js, browsers, and cloud or edge hosted environments.

Getting Started

Installation

npm i @destacks/sql

Usage

Creating a Database Client

import { createClient } from "@destacks/sql";

// For a local SQLite database
const localClient = createClient({ url: "file:local.db" });

// For a remote libSQL database
const remoteClient = createClient({
  url: "libsql://[your-sqld-host]",
  authToken: "[your-token]",
});

Defining a Zod Schema

import { z } from "zod";

const UserSchema = z.object({ id: z.string(), name: z.string() });

Executing SQL Queries

With schema validation:

import { sql } from "your-utility-path";

sql(UserSchema)`SELECT * FROM users WHERE id = ${userId}`;

Without schema validation:

sql`SELECT * FROM users WHERE id = ${userId}`;

Configurations

  • Local SQLite Files: Use file: URLs for local SQLite databases. Supported on Node.js environments.
  • libSQL sqld Instances: Connect using libsql: URLs, with support for HTTP or WebSocket protocols. Suitable for both local and remote databases.
  • Remote Databases: Access databases hosted on services like Turso. Requires authToken for secured access.

Usage in React Projects

@destacks/sql/react provides a specialized module for React projects, integrating with server-cli-only for execution in React Server Components and Node.js CLI environments.

React Project Import

import { createClient, createSql } from "@destacks/sql/react";

For more information on how server-cli-only works and its integration, refer to the server-cli-only npm package.

Integrating @destacks/sql with Next.js

To integrate @destacks/sql into your Next.js project, you need to update your Next.js configuration. This involves adding @destacks/sql to the serverComponentsExternalPackages array under the experimental key in your next.config.js file. Here's how you can do it:

// next.config.js

const nextConfig = {
  experimental: {
    serverComponentsExternalPackages: ["@destacks/sql"],
  },
};

module.exports = nextConfig;

This configuration ensures that @destacks/sql is recognized and properly handled by the Next.js framework, particularly when dealing with server components.

More Information

For detailed usage and configuration options, refer to the npm package of @destacks/sql.

License

MIT License.