Skip to content

Commit

Permalink
Merge pull request #12 from zainzafar90/master
Browse files Browse the repository at this point in the history
add more sections to frontend module
  • Loading branch information
kahootali authored Jan 9, 2019
2 parents b533ccb + fd6757a commit 84af385
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ module.exports = {
'/java-backend/wf-engine'
]
},
{
title: 'Frontend',
children: [
'/frontend/js-frameworks/javascript-frameworks-seo-challenges',
'/frontend/css/css-best-practices',
'/frontend/architecture/spa-applications-architecture',
'/frontend/architecture/micro-frontends'
]
},
{
title: 'Database',
children: [
Expand All @@ -53,12 +62,6 @@ module.exports = {
'/testing/testing'
]
},
{
title: 'Frontend',
children: [
'/frontend/css/css-best-practices'
]
},
{
title: 'Git',
children: [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Local development

All dependencies for the developer handbook is handled with yarn.

```
```bash
# install nodejs with brew
brew install node

Expand Down
2 changes: 2 additions & 0 deletions frontend/architecture/micro-frontends.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Micro Frontends

12 changes: 12 additions & 0 deletions frontend/architecture/spa-applications-architecture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Architecture of SPA (Single Page Applications)

This particular guide focus on what to keep in mind while designing the architecture of the new Single Page Application that you are going to develop.

1. Maintainable CSS
2. Multiples components/entities in one file
3. Use of LIFT pattern
4. Server Side Rendering for public pages
5. Public and Private pages
6. State Management
7. Best Architecture is independent of the frameworks

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# JavaScript Frameworks & SEO Challenges

Read following:

- [JavaScript Frameworks & SEO Challenges](https://medium.com/rpdstartup/javascript-frameworks-seo-challenges-903fbb2ef293)

0 comments on commit 84af385

Please sign in to comment.