
Research
PyPI Package Impersonates SymPy to Deliver Cryptomining Malware
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.
database-types
Advanced tools
A generic type generator for various databases.
The current supported database backend is Postgres. Track #1 issue for MySQL support.
If you are developing applications in JavaScript and using either of the strict type systems, then you can use database-types to generate types describing the database.
export DATABASE_TYPES_DATABASE_CONNECTION_URI=postgres://postgres:password@127.0.0.1/test
export DATABASE_TYPES_COLUMN_FILTER="return !['raster_overviews', 'raster_columns', 'geometry_columns', 'geography_columns', 'spatial_ref_sys'].includes(tableName)"
export DATABASE_TYPES_DIALECT=flow
database-types generate > ./types.js
This generates file containing Flow type declarations in the following format:
export type ReservationSeatRecordType = {|
+createdAt: string,
+id: number,
+reservationId: number,
+seatId: number
|};
export type TicketTypeRecordType = {|
+cinemaId: number,
+id: number,
+name: string,
+nid: string,
+policy: string | null
|};
// ...
npm install database-types -g
Options:
--help Show help [boolean]
--column-filter Function used to filter columns. Function is
constructed using `new Function`. Function
receives table name as the first parameter and
column name as the second parameter (parameter
names are "tableName" and "columnName").[string]
--property-name-formatter Function used to format property name. Function
is constructed using `new Function`. Function
receives column name as the first parameter
(parameter name is "columnName"). The default
behaviour is to (lower) camelCase the column
name. [string]
--type-name-formatter Function used to format type name. Function is
constructed using `new Function`. Function
receives table name as the first parameter
(parameter name is "tableName"). The default
behaviour is to (upper) CamelCase the table name
and suffix it with "RecordType". [string]
--database-connection-uri [required]
--dialect [required] [choices: "flow"]
--include-materialized-views [boolean] [default: true]
FAQs
A generic type generator for various databases.
The npm package database-types receives a total of 0 weekly downloads. As such, database-types popularity was classified as not popular.
We found that database-types demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.