New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

electronite

Package Overview
Dependencies
Maintainers
15
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electronite

Electron with graphite

  • 25.3.2-graphite
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
15
Created
Source

Electronite CLI

This is a drop-in replacement for electron that provides an enhanced font rendering system.

Why?

Electronite is a fork of electron that has been compiled with Graphite.

Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world.

Installation

npm i electronite

Usage

In your package.json

{
    "scripts": {
        "start": "electronite ."
    }
}

In your javascript

const {...} = require("electronite");

A Note About Importing

It's important to note that when you use require("electron"), you aren't importing code from your dependencies but from the electron runtime. So, even when you have only installed electronite you can still use require("electron"). However, since electron isn't installed you won't have the typings, so your IDE's auto-complete won't work.

Using require("electronite") provides the proper typings so auto-complete will work. It also makes more sense from a developer perspective. However, in order for the application to work, electronite automatically returns the real electron package when available from the runtime.

All of this is to say that electronite must be installed as a dependency, not a dev-dependency. The downside is that now there's potentially a large binary in your production code (depending on your build process). If you are using webpack to build your application before compiling the electronite application, this won't be a problem because webpack should automatically exclude the binary.

Development

When a new version of this package is released, the corresponding version of electron.d.ts needs to be copied from https://github.com/electron/electron/releases. E.g. for version 6.0.7 of this package we downloaded electron.d.ts from https://github.com/electron/electron/releases/tag/v6.0.7.

Then you must edit electron.d.ts to declare the electronite module.

// line 17536
declare module 'electronite' {
    export = Electron.CrossProcessExports;
}

declare module 'electronite/main' {
    export = Electron.Main
}

declare module 'electronite/common' {
    export = Electron.Common
}

declare module 'electronite/renderer' {
    export = Electron.Renderer
}

interface NodeRequireFunction {
    (moduleName: 'electronite'): typeof Electron.CrossProcessExports;
    (moduleName: 'electronite/main'): typeof Electron.Main;
    (moduleName: 'electronite/common'): typeof Electron.Common;
    (moduleName: 'electronite/renderer'): typeof Electron.Renderer;
}

interface NodeRequire {
    (moduleName: 'electronite'): typeof Electron.CrossProcessExports;
    (moduleName: 'electronite/main'): typeof Electron.Main;
    (moduleName: 'electronite/common'): typeof Electron.Common;
    (moduleName: 'electronite/renderer'): typeof Electron.Renderer;
}

Then you need to update the version of this package in package.json to match the version of electronite that you are supporting. It is important that the version matches exactly. An easy way to make sure you are setting the correct version is to look inside electron.d.ts and make sure the version indicated at the top of that file is the same as the one in package.json.

Keywords

FAQs

Package last updated on 02 Aug 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc