You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-7Lines changed: 20 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
-
# Asposehtmlcloud
2
-
3
-
Asposehtmlcloud - JavaScript client for asposehtmlcloud
1
+
# Aspose.Html Cloud Node.js SDK
2
+
[Aspose.Html Cloud](https://products.aspose.cloud/html) is a true [REST API](https://apireference.aspose.cloud/html/) that enables you to perform a wide range of html processing operations including manipulation and conversion in the cloud, with zero initial costs. Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to process html pages in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights.
4
3
5
4
- API version: 20.8.0
6
5
- Package version: 20.8.0
@@ -27,10 +26,24 @@ To use Aspose HTML for Cloud Node.js SDK you need to register an account with [A
27
26
28
27
#### npm
29
28
```shell
30
-
npm install asposehtmlcloud --save
29
+
npm install @asposecloud/aspose-html-cloud --save
31
30
```
32
31
33
32
## Getting Started
33
+
34
+
1.**Sign Up**. Before you begin, you need to sign up for an account on our [Dashboard](https://dashboard.aspose.cloud/) and retrieve your [credentials](https://dashboard.aspose.cloud/#/apps).
35
+
2.**Minimum requirements**. This SDK requires [Node.js 6.x and higher](https://nodejs.org/download/release/).
36
+
3.**Install Aspose.Html Cloud Node.js SDK**.
37
+
38
+
Please, add the following [nmp package](https://www.npmjs.com/package/@asposecloud/aspose-html-cloud) to your project.json as a dependency.
39
+
```json
40
+
{
41
+
"dependencies": {
42
+
"@asposecloud/aspose-html-cloud":"^20.8.0"
43
+
}
44
+
}
45
+
```
46
+
34
47
Please follow the [installation](#installation) instruction and execute the following JS code:
35
48
36
49
NOTE: Use the helper from /test/helper.js for an upload and save data.
@@ -53,7 +66,7 @@ var conf = {
53
66
};
54
67
55
68
//Create storage api for upload to server
56
-
var api =require('asposehtmlcloud');
69
+
var api =require('@asposecloud/aspose-html-cloud');
57
70
var fs =require('fs');
58
71
var storageApi =newapi.StorageApi(conf);
59
72
@@ -124,13 +137,13 @@ Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the follow
124
137
npm link
125
138
```
126
139
127
-
Finally, switch to the directory you want to use your asposehtmlcloud from, and run:
140
+
Finally, switch to the directory you want to use your package from, and run:
128
141
129
142
```shell
130
143
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
131
144
```
132
145
133
-
You should now be able to `require('asposehtmlcloud')` in javascript files from the directory you ran the last
146
+
You should now be able to `require('@asposecloud/aspose-html-cloud')` in javascript files from the directory you ran the last
0 commit comments