Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

tangled.sh/oppi.li/norm

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tangled.sh/oppi.li/norm

Go Modules
Version
v0.0.0-20250810170544-4448ae32b968
Version published
Created
Source

norm

norm provides helpers for query construction and row scanning for golang projects that make use of the database/sql package:

db, _ := sql.Open("sqlite3", ":memory:")

rows :=
  norm.Select("*").
    From("users").
    Where(norm.Eq("active", true)).
    MustQuery(db)

var users []User
_ = norm.ScanAll(rows, &users)

norm uses string builders to construct queries and reflection to provide a generic struct scanner. handling migrations and managing field orderings is left to the end user.

FAQs

Package last updated on 10 Aug 2025

Did you know?

Socket

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.

Install

Related posts