
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
gjs-esm-types
Advanced tools
gi://Atk?version=1.0
gi://GLib?version=2.0
gi://GModule?version=2.0
gi://GObject?version=2.0
gi://Gdk?version=3.0
gi://Gdk?version=4.0
gi://GdkPixbuf?version=2.0
gi://Gio?version=2.0
gi://Graphene?version=1.0
gi://Gsk?version=4.0
gi://Gtk?version=3.0
gi://Gtk?version=4.0
gi://HarfBuzz?version=0.0
gi://Pango?version=1.0
gi://PangoCairo?version=1.0
gi://Soup?version=2.4
gi://Soup?version=3.0
gi://cairo?version=1.0
gi://freetype2?version=2.0
gi://xlib?version=2.0
Additionally a module declaration for system
module is included as well as some global functions and variables like globalThis.print()
, globalThis.imports
, globalThis.pkg
etc.
Install this package via npm or yarn
Add this package to the tsconfig.json typeRoots:
{
"compilerOptions": {
"typeRoots": ["node_modules/gjs-esm-types", "node_modules/@types"]
}
}
gi
imports should now be correctly typed:
import Gtk from "gi://Gtk?version=3.0";
const window = new Gtk.Window();
// Resolved Type - const window: Gtk.Window;
This package only provides module declarations for imports with a version specifier. If you want your imports to not include the version, add a .d.ts
file in your project and define the module declarations in there, similarly to this:
declare module "gi://Gtk" {
import Gtk from "gi://Gtk?version=4.0";
export default Gtk;
}
declare module "gi://GLib" {
import GLib from "gi://GLib?version=2.0";
export default GLib;
}
declare module "gi://Soup" {
import Soup from "gi://Soup?version=2.4";
export default Soup;
}
FAQs
TypeScript module declarations for GJS ESM modules.
The npm package gjs-esm-types receives a total of 4 weekly downloads. As such, gjs-esm-types popularity was classified as not popular.
We found that gjs-esm-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
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.