
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
asposehtmlcloud
Advanced tools
Asposehtmlcloud - JavaScript client for asposehtmlcloud
This repository contains Aspose.HTML Cloud SDK for Node.js source code. This SDK allows you to work with Aspose.HTML Cloud REST APIs in your Node.js applications quickly and easily.
See API Reference for full API specification.
The complete source code is available in this repository folder, you can either directly use it in your project via npm package manager.
To use Aspose HTML for Cloud Node.js SDK you need to register an account with Aspose Cloud and lookup/create App Key and SID at Cloud Dashboard. There is free quota available. For more details, see Aspose Cloud Pricing.
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install asposehtmlcloud --save
To use the library locally without publishing to a remote npm registry, first install the dependencies by changing
into the directory containing package.json
(and this README). Let's call this JAVASCRIPT_CLIENT_DIR
. Then run:
npm install
Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR
:
npm link
Finally, switch to the directory you want to use your asposehtmlcloud from, and run:
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
You should now be able to require('asposehtmlcloud')
in javascript files from the directory you ran the last
command above from.
If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:
npm install GIT_USER_ID/GIT_REPO_ID --save
The library also works in the browser environment via npm and browserify. After following
the above steps with Node.js and installing browserify with npm install -g browserify
,
perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually
use this library):
browserify main.js > bundle.js
Then include bundle.js in the HTML pages.
Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:
module: {
rules: [
{
parser: {
amd: false
}
}
]
}
Before fill all fields in configuration object (see tests)
Example:
var conf = {
"basePath":"https://api.aspose.cloud/v3.0",
"authPath":"https://api.aspose.cloud/connect/token",
"apiKey":"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"appSID":"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"testResult":"/testresult/",
"testData":"/testdata/",
"remoteFolder":"HtmlTestDoc/",
"defaultUserAgent":"Webkit"
}
Please follow the installation instruction and execute the following JS code:
NOTE: Use the helper from /test/helper.js for upload and save data.
var conf = {
"basePath":"https://api.aspose.cloud/v3.0",
"authPath":"https://api.aspose.cloud/connect/token",
"apiKey":"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"appSID":"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"testResult":"/testresult/",
"testData":"/testdata/",
"remoteFolder":"HtmlTestDoc/",
"defaultUserAgent":"Webkit"
};
//Create storage api for upload to server
var api = require('asposehtmlcloud');
var fs = require('fs');
var storageApi = new api.StorageApi(conf);
// Setup local folder for source and result
var local_dst_folder = __dirname + "/../"+ conf['testResult'];
var local_src_folder = __dirname + "/../"+ conf['testData'];
// Create Conversion Api object
var conversionApi = new api.ConversionApi(conf);
var filename = "test_data.html"; // {String} Document name.
// Get upload folder from config (or write manually)
var folder = conf['remoteFolder'];
var versionId = null;
var storage=null;
var file = local_src_folder + "/" + filename;
//Upload file to storage
var opts = {versionId:versionId, storage:null};
storageApi.uploadFile(folder + "/" + filename, file, opts, callback);
//Setup output format
var outFormat = "png"; // {String} Resulting image format.
//Setup various option for result image
var opts = {
'width': 800, // {Number} Resulting image width.
'height': 1000, // {Number} Resulting image height.
'leftMargin': 10, // {Number} Left resulting image margin.
'rightMargin': 10, // {Number} Right resulting image margin.
'topMargin': 20, // {Number} Top resulting image margin.
'bottomMargin': 20, // {Number} Bottom resulting image margin.
'resolution': 300, // {Number} Resolution of resulting image.
'folder': folder, // {String} The source document folder.
'storage': storage // {String} The source document storage.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
var dst = local_dst_folder + "/" + "ResultConvertToPng.png";
var fd = fs.openSync(dst, 'w');
var len = fs.writeSync(fd, data);
}
};
conversionApi.GetConvertDocumentToImage(filename, outFormat, opts, callback);
All URIs are relative to https://api.aspose.cloud/v3.0
Tests contain various examples of using the Aspose.HTML SDK.
Class | Method | HTTP request | Description |
---|---|---|---|
Asposehtmlcloud.ConversionApi | GetConvertDocumentToImage | GET /html/{name}/convert/image/{outFormat} | Convert the HTML document from the storage by its name to the specified image format. |
Asposehtmlcloud.ConversionApi | GetConvertDocumentToImageByUrl | GET /html/convert/image/{outFormat} | Convert the HTML page from the web by its URL to the specified image format. |
Asposehtmlcloud.ConversionApi | GetConvertDocumentToPdf | GET /html/{name}/convert/pdf | Convert the HTML document from the storage by its name to PDF. |
Asposehtmlcloud.ConversionApi | GetConvertDocumentToPdfByUrl | GET /html/convert/pdf | Convert the HTML page from the web by its URL to PDF. |
Asposehtmlcloud.ConversionApi | GetConvertDocumentToXps | GET /html/{name}/convert/xps | Convert the HTML document from the storage by its name to XPS. |
Asposehtmlcloud.ConversionApi | GetConvertDocumentToXpsByUrl | GET /html/convert/xps | Convert the HTML page from the web by its URL to XPS. |
Asposehtmlcloud.ConversionApi | PostConvertDocumentInRequestToImage | POST /html/convert/image/{outFormat} | Converts the HTML document (in request content) to the specified image format and uploads resulting file to storage. |
Asposehtmlcloud.ConversionApi | PostConvertDocumentInRequestToPdf | POST /html/convert/pdf | Converts the HTML document (in request content) to PDF and uploads resulting file to storage. |
Asposehtmlcloud.ConversionApi | PostConvertDocumentInRequestToXps | POST /html/convert/xps | Converts the HTML document (in request content) to XPS and uploads resulting file to storage. |
Asposehtmlcloud.ConversionApi | PutConvertDocumentToImage | PUT /html/{name}/convert/image/{outFormat} | Converts the HTML document (located on storage) to the specified image format and uploads resulting file to storage. |
Asposehtmlcloud.ConversionApi | PutConvertDocumentToPdf | PUT /html/{name}/convert/pdf | Converts the HTML document (located on storage) to PDF and uploads resulting file to storage. |
Asposehtmlcloud.ConversionApi | PutConvertDocumentToXps | PUT /html/{name}/convert/xps | Converts the HTML document (located on storage) to XPS and uploads resulting file to storage. |
Asposehtmlcloud.ConversionApi | GetConvertDocumentToMHTMLByUrl | GET /html/convert/mhtml | Converts the HTML page from Web by its URL to MHTML returns resulting file in response content. |
Asposehtmlcloud.ConversionApi | GetConvertDocumentToMarkdown | GET /html/{name}/convert/md | Converts the HTML document (located on storage) to Markdown and returns resulting file in response content. |
Asposehtmlcloud.ConversionApi | PostConvertDocumentInRequestToMarkdown | POST /html/convert/md | Converts the HTML document (in request content) to Markdown and uploads resulting file to storage by specified path. |
Asposehtmlcloud.ConversionApi | PutConvertDocumentToMarkdown | PUT /html/{name}/convert/md | Converts the HTML document (located on storage) to Markdown and uploads resulting file to storage by specified path. |
Asposehtmlcloud.ImportApi | GetConvertMarkdownToHtml | GET /html/{name}/import/md | Converts the Markdown document (located on storage) to HTML and returns resulting file in response content. |
Asposehtmlcloud.ImportApi | PostConvertMarkdownInRequestToHtml | POST /html/import/md | Converts the Markdown document (in request content) to HTML and uploads resulting file to storage by specified path. |
Asposehtmlcloud.ImportApi | PutConvertMarkdownToHtml | PUT /html/{name}/import/md | Converts the Markdown document (located on storage) to HTML and uploads resulting file to storage by specified path. |
Asposehtmlcloud.DocumentApi | GetDocumentByUrl | GET /html/download | Return all HTML page with linked resources packaged as a ZIP archive by the source page URL. |
Asposehtmlcloud.DocumentApi | GetDocumentFragmentByXPath | GET /html/{name}/fragments/{outFormat} | Return list of HTML fragments matching the specified XPath query. |
Asposehtmlcloud.DocumentApi | GetDocumentFragmentByXPathByUrl | GET /html/fragments/{outFormat} | Return list of HTML fragments matching the specified XPath query by the source page URL. |
Asposehtmlcloud.DocumentApi | GetDocumentFragmentsByCSSSelector | GET /html/{name}/fragments/css/{outFormat} | Return list of HTML fragments matching the specified CSS selector. |
Asposehtmlcloud.DocumentApi | GetDocumentFragmentsByCSSSelectorByUrl | GET /html/fragments/css/{outFormat} | Return list of HTML fragments matching the specified CSS selector by the source page URL. |
Asposehtmlcloud.DocumentApi | GetDocumentImages | GET /html/{name}/images/all | Return all HTML document images packaged as a ZIP archive. |
Asposehtmlcloud.DocumentApi | GetDocumentImagesByUrl | GET /html/images/all | Return all HTML page images packaged as a ZIP archive by the source page URL. |
Asposehtmlcloud.TemplateMergeApi | GetMergeHtmlTemplate | GET /html/{templateName}/merge | Populate HTML document template with data located as a file in the storage. |
Asposehtmlcloud.TemplateMergeApi | PostMergeHtmlTemplate | POST /html/{templateName}/merge | Populate HTML document template with data from the request body. Result document will be saved to storage. |
Class | Method | HTTP request | Description |
---|---|---|---|
Asposehtmlcloud.StorageApi | copyFile | PUT /html/storage/file/copy/{srcPath} | Copy file |
Asposehtmlcloud.StorageApi | deleteFile | DELETE /html/storage/file/{path} | Delete file |
Asposehtmlcloud.StorageApi | downloadFile | GET /html/storage/file/{path} | Download file |
Asposehtmlcloud.StorageApi | moveFile | PUT /html/storage/file/move/{srcPath} | Move file |
Asposehtmlcloud.StorageApi | uploadFile | PUT /html/storage/file/{path} | Upload file |
Asposehtmlcloud.StorageApi | copyFolder | PUT /html/storage/folder/copy/{srcPath} | Copy folder |
Asposehtmlcloud.StorageApi | createFolder | PUT /html/storage/folder/{path} | Create the folder |
Asposehtmlcloud.StorageApi | deleteFolder | DELETE /html/storage/folder/{path} | Delete folder |
Asposehtmlcloud.StorageApi | getFilesList | GET /html/storage/folder/{path} | Get all files and folders within a folder |
Asposehtmlcloud.StorageApi | moveFolder | PUT /html/storage/folder/move/{srcPath} | Move folder |
Asposehtmlcloud.StorageApi | getDiscUsage | GET /html/storage/disc | Get disc usage |
Asposehtmlcloud.StorageApi | getFileVersions | GET /html/storage/version/{path} | Get file versions |
Asposehtmlcloud.StorageApi | objectExists | GET /html/storage/exist/{path} | Check if file or folder exists |
Asposehtmlcloud.StorageApi | storageExists | GET /html/storage/{storageName}/exist | Check if storage exists |
node.exe ./node_modules/mocha/bin/_mocha --ui bdd ./test
Please follow the installation instruction for write config file:
FAQs
Aspose.HTML Cloud SDK for Javascript source code.
The npm package asposehtmlcloud receives a total of 0 weekly downloads. As such, asposehtmlcloud popularity was classified as not popular.
We found that asposehtmlcloud demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.