![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@girs/graphene-1.0
Advanced tools
GJS TypeScript type definitions for Graphene-1.0, generated from library version 1.0.0
GJS TypeScript type definitions for Graphene-1.0, generated from library version 1.0.0 using ts-for-gir v3.2.8.
A thin layer of types for graphic libraries
To use this type definitions, install them with NPM:
npm install @girs/graphene-1.0
You can import this package into your project like this:
import Graphene from '@girs/graphene-1.0';
Or if you prefer CommonJS, you can also use this:
const Graphene = require('@girs/graphene-1.0');
You can also use ambient modules to import this module like you would do this in JavaScript.
For this you need to include @girs/graphene-1.0
or @girs/graphene-1.0/ambient
in your tsconfig
or entry point Typescript file:
index.ts
:
import '@girs/graphene-1.0'
tsconfig.json
:
{
"compilerOptions": {
...
},
"include": ["@girs/graphene-1.0"],
...
}
Now you can import the ambient module with TypeScript support:
import Graphene from 'gi://Graphene?version=1.0';
You can also import the module with Typescript support using the global imports.gi
object of GJS.
For this you need to include @girs/graphene-1.0
or @girs/graphene-1.0/import
in your tsconfig
or entry point Typescript file:
index.ts
:
import '@girs/graphene-1.0'
tsconfig.json
:
{
"compilerOptions": {
...
},
"include": ["@girs/graphene-1.0"],
...
}
Now you have also type support for this, too:
const Graphene = imports.gi.Graphene;
GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use ESM
syntax and then decide the import syntax for your bundled file. If your bundler is configured to use CommonJS
, it will convert to the GJS-specific global imports syntax, like const moduleName = imports.gi[moduleName]
. This is different from the traditional require
syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
This approach is particularly important due to the @girs
types, which include both *.cjs
files, using the GJS global imports syntax, and *.js
files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
Depending on your project configuration, it is recommended to use a bundler like esbuild. You can find examples using different bundlers here.
All existing pre-generated packages can be found on gjsify/types.
FAQs
GJS TypeScript type definitions for Graphene-1.0, generated from library version 1.0.0
The npm package @girs/graphene-1.0 receives a total of 255 weekly downloads. As such, @girs/graphene-1.0 popularity was classified as not popular.
We found that @girs/graphene-1.0 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.