Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Docker-TS, a TypeScript SDK for Docker API
# Docker Node SDK, a TypeScript SDK for Docker API

![logo](logo.png)

Docker-TS is a TypeScript library to access [Docker engine API](https://docs.docker.com/reference/api/engine/#view-the-api-reference) (a.k.a "Moby").
Node-SDK is a TypeScript library to access [Docker engine API](https://docs.docker.com/reference/api/engine/#view-the-api-reference) (a.k.a "Moby").

## Usage

Expand Down
2 changes: 1 addition & 1 deletion lib/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class HTTPClient {
// Prepare headers
const requestHeaders: Record<string, string> = {
Host: 'host',
'User-Agent': 'docker-ts/0.0.1',
'User-Agent': 'node-sdk/0.0.1',
Accept: accept,
...headers,
};
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"name": "docker-sdk",
"name": "@docker/node-sdk",
"author": "Docker Inc.",
"description": "TypeScript SDK for Docker API",
"keywords": [
"docker",
"moby"
],
"version": "0.0.1",
"homepage": "https://github.com/docker/docker-ts",
"homepage": "https://github.com/docker/node-sdk",
"bugs": {
"url": "https://github.com/docker/docker-ts/issues"
"url": "https://github.com/docker/node-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/docker/docker-ts"
"url": "https://github.com/docker/node-sdk"
},
"type": "module",
"license": "Apache-2.0",
Expand Down