This blog moved to medium->https://medium.com/@cocoamaemae

Tuesday, July 24, 2018

How to make SPA stronger against SEO

Brief

Considering regarding how to make SPA stronger against SEO

Issues

If introduced SAP, the below issues could be considered.

  • It's not obvious if web contents updated dynamically is evaluated or not in accurate.
  • Google web crawler does not evaluate JS

How to solve

  • SSR(Server Side Rendering):  Using node.js or etc.., and execute front end process in server side.
  • Prerendering: Using cui browser, and return contents rendered in server side in advance.

Wednesday, July 11, 2018

kubernetes begining

Brief

By spread of container technology like Docker, it was easy to solve dependencies  of libraries, applications and files among servers. Also, container technology makes it easy to migrate resources.
Next problem is management of containers. If there are just only several containers, managing is not so difficult. But increasing the number of containers, it makes managing more complex.

What's Kubernetes?

Kubernetes is one of the operation tools of container clustering and called as container orchestration tool. It is developed to solve the above container management problems. Google is developing.
It has functions of container operation like auto deploy, storage mount, health check and getting logs or etc...





Front End Development Tools

TaskRunner Tool executing multiple tasks by only one execution. Tasks are like CSS preprocessor, Transpire, Module Bundler, etc... e.g. ...