Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@chehsunliu/seeder-sftp

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chehsunliu/seeder-sftp - npm Package Compare versions

Comparing version 0.7.0-alpha to 0.7.0-alpha.1

54

dist/index.js

@@ -1,5 +0,44 @@

import * as fs from "node:fs";
import path from "node:path";
import SftpClient from "ssh2-sftp-client";
export class SftpSeeder {
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SftpSeeder = void 0;
const fs = __importStar(require("node:fs"));
const node_path_1 = __importDefault(require("node:path"));
const ssh2_sftp_client_1 = __importDefault(require("ssh2-sftp-client"));
class SftpSeeder {
props;

@@ -14,3 +53,3 @@ client;

seed = async (folder) => {
const fullLocalSrcDir = path.join(folder, this.props.localSrcDir);
const fullLocalSrcDir = node_path_1.default.join(folder, this.props.localSrcDir);
if (!fs.existsSync(fullLocalSrcDir)) {

@@ -34,3 +73,3 @@ return;

}
this.client = new SftpClient();
this.client = new ssh2_sftp_client_1.default();
await this.client.connect(this.props.connection);

@@ -42,3 +81,3 @@ return this.client;

for (const f of await client.list(folder)) {
const fullPath = path.join(folder, f.name);
const fullPath = node_path_1.default.join(folder, f.name);
if (f.type === "d") {

@@ -54,2 +93,3 @@ await this.rmDir(fullPath);

}
exports.SftpSeeder = SftpSeeder;
//# sourceMappingURL=index.js.map

3

package.json
{
"name": "@chehsunliu/seeder-sftp",
"type": "module",
"version": "0.7.0-alpha",
"version": "0.7.0-alpha.1",
"description": "The SFTP implementation for Seeder.js",

@@ -6,0 +5,0 @@ "author": "Che-Hsun Liu <chehsunliu@gmail.com>",

Sorry, the diff of this file is not supported yet

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