https://github.com/cloudinary-devs/cld-node-sdk-quick-start
Shows the finished result of the Node.js SDK Quick Start instructions provided in the Cloudinary documentation.
https://github.com/cloudinary-devs/cld-node-sdk-quick-start
Last synced: 12 months ago
JSON representation
Shows the finished result of the Node.js SDK Quick Start instructions provided in the Cloudinary documentation.
- Host: GitHub
- URL: https://github.com/cloudinary-devs/cld-node-sdk-quick-start
- Owner: cloudinary-devs
- Created: 2022-05-03T10:36:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-28T11:27:14.000Z (almost 4 years ago)
- Last Synced: 2025-04-01T06:02:05.463Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://cloudinary.com/documentation/node_quickstart
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cloudinary Node.js SDK Quick Start
This small Node.js project shows the finished result of the [Node.js SDK Quick Start](https://cloudinary.com/documentation/node_quickstart) instructions provided in the Cloudinary documentation.
Feel free to fork this project and use it as a quick way to get started playing with the Cloudinary Node.js SDK. However, keep in mind that the intention of this code is to help developers quickly get started using several common Cloudinary features. It doesn't necessarily employ coding best practices and the code isn't intended for production.
## Running the script
To run the script:
1. Clone this repo.
1. Open a terminal in the `cld-node-sdk-quick-start` folder.
1. Set your Cloudinary API Environment variable:
```
export CLOUDINARY_URL=cloudinary://:@
```
You can find your API Environment variable in the Account Details section of your Cloudinary console.
1. Install Cloudinary:
```
npm install cloudinary
```
1. Run the script:
```
node index.js
```