@ductape/sdk 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Ductape streamlines software development with **composable** and **portable** co
|
|
|
20
20
|
|
|
21
21
|
### 1️ Install SDK
|
|
22
22
|
```sh
|
|
23
|
-
npm install ductape
|
|
23
|
+
npm install @ductape/sdk
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
### 2️ Define Apps & Actions
|
|
@@ -42,7 +42,7 @@ Group apps, resources, and features into a **product** for seamless interoperabi
|
|
|
42
42
|
|
|
43
43
|
### 6️ Use in Code
|
|
44
44
|
```js
|
|
45
|
-
import Ductape from "ductape
|
|
45
|
+
import Ductape from "@ductape/sdk";
|
|
46
46
|
|
|
47
47
|
const { processor } = new Ductape(credentials);
|
|
48
48
|
|
package/package.json
CHANGED