This sample project covers:
- Setting up ImageKit Angular SDK
- Rendering images
- Applying common image manipulations
- Lazy loading images
- Blurred image placeholder
- Client-side file uploading
- Advanced file uploading
- Rendering videos
- Progressive image loading
npm install
In src/app/app.module.ts
, set the following parameters for authentication:
publicKey = '<YOUR_IMAGEKIT_PUBLIC_KEY>';
urlEndpoint = '<YOUR_IMAGEKIT_URL_ENDPOINT>';
authenticationEndpoint = 'http://localhost:3001/auth';
Required parameters are urlEndpoint
and publicKey
. The authenticator
parameter is optional and only needed if you want to use the SDK for client-side file upload.
You can get the value of URL-endpoint from your ImageKit dashboard. API public key can be obtained from the developer section in your ImageKit dashboard.
npm start
Open the page at http://localhost:4200
.
Create .env file with PRIVATE_KEY attribute.
PRIVATE_KEY=<your_private_key>
Then run the following commands.
cd sample-server
npm install
npm run server
Node server will run at http://localhost:3000
.
- Angular quickstart guide - https://docs.imagekit.io/getting-started/quickstart-guides/angular
- Angular SDK and documentation - https://github.com/imagekit-developer/imagekit-angular
If something doesn't work as expected, report a bug at support@imagekit.io.