A VSCode plugin for uploading project files to any HTTP server!
Only three steps:
- set user/workspace configuration
- select files or folders
- right click and choose [Upload Files] menu
CodeLens show up when lines starts with var FileUploader
:
▶ Upload Files
var FileUploader = {
apiEndpoint: "http://localhost:7001/upload",
httpHeaders: {
authorization: "Bearer eyJhbGciOi...",
},
fileField: "file",
formData: {
name: "keliq",
age: 12,
hobbies: ["music", "coding"],
},
};