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

@actual-app/api

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@actual-app/api - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

11

connection.js

@@ -9,2 +9,3 @@ let ipc = require('node-ipc');

let replyHandlers = new Map();
let initialized = null;

@@ -22,8 +23,9 @@ function send(name, args) {

async function init(socketName) {
if (socketClient) {
return;
// Support calling this multiple times before it actually connects
if (initialized) {
return initialized;
}
initialized = getSocket(socketName);
socketClient = await initialized;
socketClient = await getSocket(socketName);
if (!socketClient) {

@@ -70,2 +72,3 @@ // TODO: This could spawn Actual automatically. The ideal solution

socketClient = null;
initialized = false;
}

@@ -72,0 +75,0 @@

{
"name": "@actual-app/api",
"version": "1.0.5",
"version": "1.0.6",
"description": "An API for Actual",

@@ -5,0 +5,0 @@ "main": "api.js",

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