-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: correctly try additional ports on EADDRINUSE * feat: remove passive url host resoltion See: #139 * feat: require pasv url to be specified * fix(pasv): check for set pasv url * chore: update scripts * fix(cli): remove undefined values * chore: add cli to eslint verify * chore: run eslint * chore: update scripts * feat: add maximum number of retries to port selection * chore: simplify eslint config * chore: simplify dev dependencies * chore: generate contributors * chore: update readme contributors
- Loading branch information
Showing
26 changed files
with
2,144 additions
and
1,638 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
# START_CONFIT_GENERATED_CONTENT | ||
# Common folders to ignore | ||
node_modules/* | ||
bower_components/* | ||
|
||
# Config folder (optional - you might want to lint this...) | ||
config/* | ||
|
||
# END_CONFIT_GENERATED_CONTENT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
test_tmp/ | ||
|
||
node_modules/ | ||
|
||
dist/ | ||
reports/ | ||
npm-debug.log | ||
.nyc_output/ | ||
test_tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
const {get} = require('https'); | ||
|
||
get('https://api.github.com/repos/trs/ftp-srv/contributors', { | ||
headers: { | ||
'User-Agent': 'Chrome' | ||
} | ||
}, (res) => { | ||
let response = ''; | ||
res.on('data', (data) => { | ||
response += data; | ||
}); | ||
res.on('end', () => { | ||
const contributors = JSON.parse(response) | ||
.filter((contributor) => contributor.type === 'User'); | ||
|
||
for (const contributor of contributors) { | ||
const url = contributor.html_url; | ||
const username = contributor.login; | ||
|
||
const markdown = `- [${username}](${url})\n`; | ||
|
||
process.stdout.write(markdown); | ||
} | ||
}); | ||
}).on('error', (err) => { | ||
process.stderr.write(err); | ||
}); |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.