0.18.1 • Published 4 years ago

@nireno/reasonably-typed v0.18.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

reasonably-typed

Experimenting with some bucklescript bindings for nodejs packages I use.

Get started

let (instance, logger) = Pino.make();
logger.info("Hello");

See tests and examples for more.

Testing - Setup postgres session store database

sudo -s -u postgres
createuser --pwprompt throwaway
createdb --owner throwaway throwaway
psql --host 127.0.0.1 -U throwaway -d throwaway

CREATE TABLE "session" (
  "sid" varchar NOT NULL COLLATE "default",
	"sess" json NOT NULL,
	"expire" timestamp(6) NOT NULL
)
WITH (OIDS=FALSE);

ALTER TABLE "session" ADD CONSTRAINT "session_pkey" PRIMARY KEY ("sid") NOT DEFERRABLE INITIALLY IMMEDIATE;

CREATE INDEX "IDX_session_expire" ON "session" ("expire");
0.18.1

4 years ago

0.18.0

5 years ago

0.17.0

5 years ago

0.17.0-0

5 years ago

0.16.0

5 years ago

0.16.0-0

5 years ago

0.15.1-0

5 years ago

0.15.0-0

5 years ago

0.14.0

5 years ago

0.13.0

5 years ago

0.12.0

5 years ago

0.11.0

5 years ago

0.10.1

5 years ago

0.10.0

5 years ago

0.9.0

5 years ago

0.8.1

5 years ago

0.8.0

5 years ago

0.7.1

5 years ago

0.7.0

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago