https://github.com/tomimelo/basicexpressftp-app
Basic Node Express App with FTP Integration
https://github.com/tomimelo/basicexpressftp-app
Last synced: 8 months ago
JSON representation
Basic Node Express App with FTP Integration
- Host: GitHub
- URL: https://github.com/tomimelo/basicexpressftp-app
- Owner: tomimelo
- Created: 2020-10-15T11:07:33.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-15T11:23:30.000Z (over 5 years ago)
- Last Synced: 2025-03-25T12:22:22.755Z (about 1 year ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Basic Node Express App with FTP Integration
Just a basic node express app that connects to a FTP server and send a test file.
## Getting Started
1. Clone the repo
```sh
git clone https://github.com/tomimelo/BasicExpressFTP-App.git
```
3. Install NPM packages
```sh
npm install
```
4. Create a `.env` file on root folder
5. Create the following variables
```sh
PORT={YOUR-PORT-NUMBER}
FTP_HOST={FTP-HOST}
FTP_PORT={FTP-PORT}
FTP_USER_NAME={FTP-USERNAME}
FTP_USER_PWD={FTP-PASSWORD}
```
## Usage
1. Open a terminal on root folder and run node
```sh
node index
```
2. Open your browser and go to `localhost:YOURPORT/send`
3. That's all!