Skip to content

Showcase of the Kentico Cloud JS SDK integration with modern frameworks - React, Vue, Angular, Jest.

Notifications You must be signed in to change notification settings

Simply007/kc-js-sdk-react-vue-angular-jest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kentico Cloud ❤️ Jest, React, Vue, and Angular

All of the applications load the articles from Kentico Cloud and display its titles in the output.

This repository contains show cases, how does the Kentico Cloud Delivery SDK could be used in combination with:

If you want to take a look in detail - Open the appropriate folder for the description, or click Readme link.

Data loading

Applications are using Kentico Cloud Delivery SDK for Javascript as an npm package to load articles from the sample Kentico Cloud project.

import { DeliveryClient } from 'kentico-cloud-delivery';

const client = new DeliveryClient({
  projectId: "975bf280-fd91-488c-994c-2f04416e5ee3"
});

client.items()
  .type("article")
  .getPromise()
  .then(result => {
    console.log(result.items);
  })

How to run

Common prerequisites

For all of the application just navigate to your folder and run

cd kc-jest # OR cd kc-react OR kc-vue or kc-angular
npm install # to install all the defined dependencies
npm start

How does it look like

Jest

Jest showcase

React

React showcase

Vue

Vue showcase

Angular

Angular showcase

About

Showcase of the Kentico Cloud JS SDK integration with modern frameworks - React, Vue, Angular, Jest.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published