Socket
Socket
Sign inDemoInstall

electron-first-run

Package Overview
Dependencies
2
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    electron-first-run

Detect first run on Electron Apps


Version published
Weekly downloads
269
decreased by-12.38%
Maintainers
1
Install size
80.5 kB
Created
Weekly downloads
 

Readme

Source

electron-first-run

Build Status: Linux and macOS Build status: Windows

Check if it's the first time an Electron App runs.

This pacakge it's based on first-run by @sindresorhus, keeping the API as a drop in replacement for Electron.

Install

$ npm install --save electron-first-run
or
$ yarn add --save electron-first-run

Usage

// main process
const firstRun = require('electron-first-run');

const isFirstRun = firstRun()
console.log(isFirstRun);

API

firstRun([options])

options.name

Type: string Default: electron-app-first-run

Name of the storage file (without extension).

This is useful if you want multiple storage files for your app. Or if you're making a reusable Electron module that persists some data, in which case you should not use the default name.

firstRun.clear()

Clear the state.

License

MIT © Joseph Cohen

Keywords

FAQs

Last updated on 20 Aug 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc