skip to Main Content

Securing JS client-side SDKs – Shopify

I'm working on a React-Redux web-app which integrates with AWS Cognito for user authentication/data storage and with the Shopify API so users can buy items through our site. With both SDKs (Cognito, Shopify), I've run into an issue: Their core…

VIEW QUESTION

Client side rendering React – Twitter bootstrap

I am new to React(Angular background) and trying to do client side rendering with react. Following index.html which is sent by express application: <html> <head> <title>My Web</title> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.1/react.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.1/react-dom.min.js"></script> <script type="text/javascript" src="/static/src/js/firstComponent.js"></script>…

VIEW QUESTION

SEO-friendly React-Redux app

React apps render components on the fly, dynamically, so it makes it impossible for search engines to index pages, and complicates social sharing. What is the best practice to handle such issues, and make a React-Redux app SEO-friendly?

VIEW QUESTION
Back To Top
Search