Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@sprucelabs/data-stores
Advanced tools
A standardized way to store data across many storage platforms. This is NOT an ORM. Just a simple adapter layer built to make it easy to work with storage!
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.7 (Homebrew)
-- Dumped by pg_dump version 14.7 (Homebrew)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
-- start with dropping tables
DROP TABLE IF EXISTS public.test_collection CASCADE;
DROP TABLE IF EXISTS public."user" CASCADE;
DROP SEQUENCE IF EXISTS public.test_collection_id_seq CASCADE;
--
-- Name: test_collection; Type: TABLE; Schema: public; Owner: taylorromero
--
CREATE TABLE public.test_collection (
id integer NOT NULL,
name character varying NOT NULL,
count integer,
"isPublic" boolean,
number integer,
names varchar(255)[],
"uniqueField" character varying,
"uniqueField2" character varying,
"uniqueField3" character varying,
"uniqueField4" character varying,
"someField" character varying,
"someField2" character varying,
"someField3" character varying,
"otherField" character varying,
"otherField2" character varying,
"someOtherField" character varying,
"randomUniqueField" character varying,
target jsonb,
slug character varying,
"aNonIndexedField" boolean,
"undefinedField" character varying,
"nullField" character varying
);
ALTER TABLE public.test_collection OWNER TO taylorromero;
--
-- Name: test_collection_id_seq; Type: SEQUENCE; Schema: public; Owner: taylorromero
--
CREATE SEQUENCE public.test_collection_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: test_collection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: taylorromero
--
ALTER SEQUENCE public.test_collection_id_seq OWNED BY public.test_collection.id;
--
-- Name: user; Type: TABLE; Schema: public; Owner: taylorromero
--
CREATE TABLE public."user" (
id integer NOT NULL,
name character varying NOT NULL,
count integer,
"isPublic" boolean,
number integer,
names varchar(255)[],
"uniqueField" character varying,
"uniqueField2" character varying,
"uniqueField3" character varying,
"uniqueField4" character varying,
"someField" character varying,
"someField2" character varying,
"someField3" character varying,
"otherField" character varying,
"otherField2" character varying,
"someOtherField" character varying,
"randomUniqueField" character varying,
target jsonb,
slug character varying,
"aNonIndexedField" boolean,
"undefinedField" character varying,
"nullField" character varying
);
--
-- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: taylorromero
--
CREATE SEQUENCE public.user_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: taylorromero
--
ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id;
--
-- Name: test_collection id; Type: DEFAULT; Schema: public; Owner: taylorromero
--
ALTER TABLE ONLY public.test_collection ALTER COLUMN id SET DEFAULT nextval('public.test_collection_id_seq'::regclass);
--
-- Name: user id; Type: DEFAULT; Schema: public; Owner: taylorromero
--
ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass);
--
-- Data for Name: test_collection; Type: TABLE DATA; Schema: public; Owner: taylorromero
--
COPY public.test_collection (id, name, count, "isPublic", number, names, "uniqueField", "uniqueField2", "uniqueField3", "uniqueField4", "someField", "someField2", "someField3", "otherField", "otherField2", "someOtherField", "randomUniqueField", target, slug, "aNonIndexedField", "undefinedField", "nullField") FROM stdin;
\.
--
-- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: taylorromero
--
COPY public."user" (id, name, count, "isPublic", number, names, "uniqueField", "uniqueField2", "uniqueField3", "uniqueField4", "someField", "someField2", "someField3", "otherField", "otherField2", "someOtherField", "randomUniqueField", target, slug, "aNonIndexedField", "undefinedField", "nullField") FROM stdin;
\.
--
-- Name: test_collection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: taylorromero
--
SELECT pg_catalog.setval('public.test_collection_id_seq', 1, false);
--
-- Name: user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: taylorromero
--
SELECT pg_catalog.setval('public.user_id_seq', 1, false);
--
-- Name: test_collection test_collection_pk; Type: CONSTRAINT; Schema: public; Owner: taylorromero
--
ALTER TABLE ONLY public.test_collection
ADD CONSTRAINT test_collection_pk PRIMARY KEY (id);
--
-- Name: user user_pk; Type: CONSTRAINT; Schema: public; Owner: taylorromero
--
ALTER TABLE ONLY public."user"
ADD CONSTRAINT user_pk PRIMARY KEY (id);
--
-- PostgreSQL database dump complete
--
FAQs
A standardized way to store data across many storage platforms. This is NOT an ORM. Just a simple adapter layer built to make it easy to work with storage!
We found that @sprucelabs/data-stores demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.