Socket
Socket
Sign inDemoInstall

ftpsync

Package Overview
Dependencies
47
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.6 to 0.1.7

test/local/.npmignore

4

lib/ftpsync.js

@@ -218,3 +218,3 @@ // Design Notes

}
sync.info('MKDIRs complete.');
sync.log.info('MKDIRs complete.');
callback(null);

@@ -430,2 +430,3 @@ });

mkdir: function(dir, callback) {
dir = settings.remote + dir;
ftp.raw.mkd(dir, function(err, data) {

@@ -444,2 +445,3 @@ if (err) {

rmdir: function(dir, callback) {
dir = settings.remote + dir;
ftp.raw.rmd(dir, function(err, data) {

@@ -446,0 +448,0 @@ if (err) {

{
"name": "ftpsync",
"description": "Intelligent file syncronization over FTP",
"version": "0.1.6",
"version": "0.1.7",
"homepage": "http://github.com/evanplaice/node-ftpsync",

@@ -6,0 +6,0 @@ "author": {

@@ -213,3 +213,2 @@ An FTP synchronization app for NodeJS based on [jsftp](https://npmjs.org/package/jsftp). With an emphasis on speed and simplicity ftpsync aims to fulfull your one-click file deployment needs.

- Implement timestamp file comparisons on updates
- Improve logging

@@ -216,0 +215,0 @@ ### Long Term

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