The basic sample uploads local and remote image to Cloudinary and generates URLs for applying various image transformations on the uploaded files.
- Before running the sample, copy the Environment variable configuration parameters from Cloudinary's Management Console of your account into
.env
file of the project or export it (i.e. export CLOUDINARY_URL=xxx). - Run
npm install
in project directory to bring all the required modules. - Run the sample using
node basic.js
.
Simple application for uploading images and displaying them in a list.
This sample uses jugglingdb orm.
See schema.js for adapter configuration.
- Before running the sample, copy the Environment variable configuration parameters from Cloudinary's Management Console of your account into
.env
file of the project or export it (i.e. export CLOUDINARY_URL=xxx). - In the project directory, run
npm install
to install all the required dependencies. - Run
npm start
to start the server , if you want to run a development mode server (autoreload) runnode run-script debug
. - Open the sample page in a browser: http://localhost:9000