lesstedious
TypeScript icon, indicating that this package has built-in type declarations

1.7.1 • Public • Published

LessTedious

Sql server access from node with Typescript types. The three main concepts in the library are the Query<A> interface, the execute function, and the Config interface. The basic idea is that you have a config and a query that are passed to the execute function. The Query<A> interface uses a phantom type parameter which allows the definition of the return type along with the query rather than at the time of query execution.

npm install lesstedious

Examples

For all of the examples, we'll use the following Student interface:

interface Student {
	id: number;
	fullName: string;
	imageUrl: string;
}

Simple query

Just create a Query<A> value substituting the type of data you wish to be returned.
Make sure your select list names match your interface properties in spelling and casing..

import { Query, execute } from "lesstedious";

const all: Query<Student> = {
	sql: "SELECT id, fullName, imageUrl from students with (nolock)"
};

const students: Promise<Student[]> = execute(config, all);

Query with Parameters

For queries that accept parameters you'll create a function that returns a Query<A> with the optional params property.

import { Query, execute } from "lesstedious";

export const byId = (id: number): Query<Student> => ({
	sql:
		"SELECT id, fullName, imageUrl " +
		"FROM students with (nolock) " +
		"WHERE id = @id",
	params: { id }
});

const studentWithId6 = byId(6);

const students: Promise<Student[]> = execute(config, studentWithId6);

From Javascript

const { execute } = require("lesstedious");

const all = {
	sql: "SELECT id, fullName, imageUrl from students with (nolock) order by fullName"
};

execute(config, all).then(students => console.log(students))

Package Sidebar

Install

npm i lesstedious

Weekly Downloads

16

Version

1.7.1

License

ISC

Unpacked Size

19.8 kB

Total Files

11

Last publish

Collaborators

  • reidnevans