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

@remix-project/remixd

Package Overview
Dependencies
Maintainers
3
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remix-project/remixd - npm Package Compare versions

Comparing version

to
0.3.4

19

bin/remixd.js

@@ -13,4 +13,4 @@ #!/usr/bin/env node

const services = {
git: () => new servicesList.GitClient(),
folder: () => new servicesList.Sharedfolder()
git: (readOnly) => new servicesList.GitClient(readOnly),
folder: (readOnly) => new servicesList.Sharedfolder(readOnly)
};

@@ -23,3 +23,3 @@ const ports = {

function startService(service, callback) {
const socket = new websocket_1.default(ports[service], { remixIdeUrl: program.remixIde }, () => services[service]());
const socket = new websocket_1.default(ports[service], { remixIdeUrl: program.remixIde }, () => services[service](program.readOnly || false));
socket.start(callback);

@@ -59,8 +59,10 @@ killCallBack.push(socket.close.bind(socket));

sharedFolderClient.setupNotifications(program.sharedFolder);
sharedFolderClient.sharedFolder(program.sharedFolder, program.readOnly || false);
sharedFolderClient.sharedFolder(program.sharedFolder);
});
startService('git', (ws, sharedFolderClient) => {
sharedFolderClient.setWebSocket(ws);
sharedFolderClient.sharedFolder(program.sharedFolder, program.readOnly || false);
});
/*
startService('git', (ws: WS, sharedFolderClient: servicesList.Sharedfolder) => {
sharedFolderClient.setWebSocket(ws)
sharedFolderClient.sharedFolder(program.sharedFolder)
})
*/
}

@@ -84,2 +86,3 @@ catch (error) {

}
process.exit(0);
}

@@ -86,0 +89,0 @@ process.on('SIGINT', kill); // catch ctrl-c

'use strict';
Object.defineProperty(exports, "__esModule", { value: true });
const remixdClient_1 = require("./services/remixdClient");
const gitClient_1 = require("./services/gitClient");
const websocket_1 = require("./websocket");

@@ -10,5 +11,6 @@ const utils = require("./utils");

services: {
sharedFolder: remixdClient_1.RemixdClient
sharedFolder: remixdClient_1.RemixdClient,
GitClient: gitClient_1.GitClient
}
};
//# sourceMappingURL=index.js.map
{
"name": "@remix-project/remixd",
"version": "0.3.4-beta",
"version": "0.3.4",
"description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)",

@@ -38,8 +38,8 @@ "main": "index.js",

"dependencies": {
"@remixproject/plugin": "^0.3.3",
"@remixproject/plugin-api": "^0.3.3",
"@remixproject/plugin-utils": "^0.3.3",
"@remixproject/plugin-ws": "^0.3.3",
"axios": "^0.20.0",
"chokidar": "^3.5.1",
"@remixproject/plugin": "^0.3.11",
"@remixproject/plugin-api": "^0.3.11",
"@remixproject/plugin-utils": "^0.3.11",
"@remixproject/plugin-ws": "^0.3.11",
"axios": ">=0.21.1",
"chokidar": "^2.1.8",
"commander": "^2.20.3",

@@ -46,0 +46,0 @@ "fs-extra": "^3.0.1",

@@ -18,2 +18,10 @@ # Remixd

### Warning for old users
There is a new version of remixd with a new npm address: https://npmjs.com/package/@remix-project/remixd
If you were using the old one you need to:
1. uninstall the old one: `npm uninstall -g remixd`
2. install the new: `npm install -g @remix-project/remixd`
## HELP SECTION

@@ -50,2 +58,2 @@

- Symbolic links are not forwarded to Remix IDE.
import * as WS from 'ws';
import { PluginClient } from '@remixproject/plugin';
export declare class GitClient extends PluginClient {
methods: ['execute'];
private readOnly;
methods: Array<string>;
websocket: WS;
currentSharedFolder: string;
readOnly: boolean;
constructor(readOnly?: boolean);
setWebSocket(websocket: WS): void;
sharedFolder(currentSharedFolder: string, readOnly: boolean): void;
sharedFolder(currentSharedFolder: string): void;
execute(cmd: string): Promise<unknown>;
}

@@ -6,8 +6,12 @@ "use strict";

class GitClient extends plugin_1.PluginClient {
constructor(readOnly = false) {
super();
this.readOnly = readOnly;
this.methods = ['execute'];
}
setWebSocket(websocket) {
this.websocket = websocket;
}
sharedFolder(currentSharedFolder, readOnly) {
sharedFolder(currentSharedFolder) {
this.currentSharedFolder = currentSharedFolder;
this.readOnly = readOnly;
}

@@ -14,0 +18,0 @@ execute(cmd) {

@@ -5,9 +5,10 @@ import { PluginClient } from '@remixproject/plugin';

export declare class RemixdClient extends PluginClient {
methods: ['folderIsReadOnly', 'resolveDirectory', 'get', 'exists', 'isFile', 'set', 'list', 'isDirectory', 'createDir'];
private readOnly;
methods: Array<string>;
trackDownStreamUpdate: TrackDownStreamUpdate;
websocket: WS;
currentSharedFolder: string;
readOnly: boolean;
constructor(readOnly?: boolean);
setWebSocket(websocket: WS): void;
sharedFolder(currentSharedFolder: string, readOnly: boolean): void;
sharedFolder(currentSharedFolder: string): void;
list(): Filelist;

@@ -14,0 +15,0 @@ resolveDirectory(args: SharedFolderArgs): ResolveDirectory;

@@ -9,5 +9,7 @@ "use strict";

class RemixdClient extends plugin_1.PluginClient {
constructor() {
super(...arguments);
constructor(readOnly = false) {
super();
this.readOnly = readOnly;
this.trackDownStreamUpdate = {};
this.methods = ['folderIsReadOnly', 'resolveDirectory', 'get', 'exists', 'isFile', 'set', 'rename', 'remove', 'isDirectory', 'list', 'createDir', 'canDeactivate'];
}

@@ -17,5 +19,6 @@ setWebSocket(websocket) {

}
sharedFolder(currentSharedFolder, readOnly) {
sharedFolder(currentSharedFolder) {
this.currentSharedFolder = currentSharedFolder;
this.readOnly = readOnly;
if (this.isLoaded)
this.emit('rootFolderChanged');
}

@@ -22,0 +25,0 @@ list() {

@@ -16,2 +16,4 @@ "use strict";

path = pathModule.resolve(sharedFolder, path);
if (!isSubDirectory(pathModule.resolve(process.cwd(), sharedFolder), path))
throw new Error('Cannot read/write to path outside shared folder.');
return path;

@@ -21,2 +23,17 @@ }

/**
* returns a true if child is sub-directory of parent.
*
* @param {String} parent - path to parent directory
* @param {String} child - child path
* @return {Boolean}
*/
function isSubDirectory(parent, child) {
if (!parent)
return false;
if (parent === child)
return true;
const relative = pathModule.relative(parent, child);
return !!relative && relative.split(pathModule.sep)[0] !== '..';
}
/**
* return the relative path of the given @arg path

@@ -34,7 +51,7 @@ *

function normalizePath(path) {
if (path === '/')
path = './';
if (process.platform === 'win32') {
return path.replace(/\\/g, '/');
}
if (path === '/')
path = './';
return path;

@@ -41,0 +58,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet