Skip to content

Upload framework for IECloud, and a optimized version of IEFW with native nodejs.

License

Notifications You must be signed in to change notification settings

AetheraDev/iefw-native

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

IEFW Native

Upload framework for IECloud, and a optimized version of IEFW with native nodejs.

Installing IEFW-NATIVE:

npm install iefw-native

Using IEFW NATIVE

Simple example:

const ie = require('iefw-native');
const iecloud = new ie();

const file = './path/to/file';

iecloud.uploadFile(file)
  .then((fileUrl) => {
    console.log('File uploaded successfully!');
    console.log('File URL', fileUrl);
  })
  .catch((error) => {
    console.error('An error occurred while uploading the file:', error);
  });

About

Upload framework for IECloud, and a optimized version of IEFW with native nodejs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published