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
+14-8Lines changed: 14 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@ Take control of your third party APIs
4
4
5
5
# Getting Started
6
6
7
-
You'll need your API key from taskless.io to use Taskless' dynamic pack loading, remote cofiguration, and dashboard packages. If you don't have an API key, you can sign up for free at [taskless.io](https://taskless.io).
8
-
9
7
```bash
10
8
npm install @taskless/loader
11
9
# or
@@ -17,18 +15,26 @@ pnpm add @taskless/loader
17
15
Once you've installed the Taskless loader into your node dependencies, it's as easy as:
18
16
19
17
```bash
20
-
TASKLESS_API_KEY="your api key"node --import="@taskless/loader" start.js
18
+
node --import="@taskless/loader" start.js
21
19
```
22
20
23
21
# Advanced Features
24
22
23
+
## Taskless Cloud
24
+
25
+
You'll need your API key from taskless.io to use Taskless' dynamic pack loading, remote cofiguration, and dashboard packages. If you don't have an API key, you can request one at [taskless.io](https://taskless.io). With an API key in hand, you can update your node.js start command:
26
+
27
+
```bash
28
+
TASKLESS_API_KEY="your api key" node --import="@taskless/loader" start.js
0 commit comments