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
Angular SDK for [ImageKit.io](https://imagekit.io), which implements client-side upload and URL generation for use inside an angular application.
10
+
ImageKit Angular SDK allows you to resize, optimize, deliver and upload images and videos in your react application.
9
11
10
-
ImageKit is a complete image optimization and transformation solution that comes with an [image CDN](https://imagekit.io/features/imagekit-infrastructure)and media storage. It can be integrated with your existing infrastructure - storages like AWS S3, web servers, your CDN, and custom domain names, allowing you to deliver optimized images in minutes with minimal code changes.
12
+
ImageKit is complete media storage, optimization, and transformation solution that comes with an image and video CDN. It can be integrated with your existing infrastructure - storage like AWS S3, web servers, your CDN, and custom domain names, allowing you to deliver optimized images in minutes with minimal code changes.
11
13
12
14
## Installation
13
15
14
-
`npm install --save imagekitio-angular`
16
+
```shell
17
+
npm install --save imagekitio-angular
18
+
```
19
+
20
+
or
21
+
22
+
```shell
23
+
yarn add imagekitio-angular
24
+
```
15
25
16
26
## Usage
17
27
@@ -38,11 +48,11 @@ In order to use the SDK, you need to provide it with a few configuration paramet
38
48
})
39
49
```
40
50
41
-
`publicKey` and `urlEndpoint`are mandatory parameters for SDK initialization.
42
-
`authenticationEndpoint`is essential if you want to use the SDK for client-side uploads.
43
-
`transformationPosition` is optional. The default value for the parameter is `path`. Acceptable values are `path` & `query`
51
+
*`urlEndpoint`is required to use the SDK. You can get URL-endpoint from your ImageKit dashboard - https://imagekit.io/dashboard/url-endpoints.
52
+
*`publicKey` and `authenticationEndpoint`parameters are required if you want to use the SDK for client-side file upload. You can get `publicKey` from the developer section in your ImageKit dashboard - https://imagekit.io/dashboard/developer/api-keys.
53
+
*`transformationPosition` is optional. The default value for the parameter is `path`. Acceptable values are `path` & `query`
44
54
45
-
_Note: Do not include your Private Key in any client-side code, including this SDK or its initialization. If you pass the `privateKey` parameter while initializing this SDK, it throws an error_
55
+
> Note: Do not include your [private key](https://docs.imagekit.io/api-reference/api-introduction/api-keys#private-key) in any client-side code.
0 commit comments