
Study guide and introduction to the modern front end stack.
As the leading transportation platform in Southeast Asia, Grab is not only dedicated to enhancing mobility but also to fostering growth in the tech ecosystem. Their approach to front-end development reflects this commitment, especially in the face of rapid expansion and the complexities involved in modern web development. With 2.3 million rides handled daily, Grab emphasizes the need for their web team to continually evolve, adapting the latest technologies and practices to deliver high-quality applications efficiently.
The Grab Front End Guide serves as an invaluable resource for newcomers navigating the challenges of modern front-end development. It provides a structured study guide to empower new hires—particularly those not deeply entrenched in the JavaScript ecosystem—allowing them to gain proficiency and confidence in their roles while facilitating the shipping of code to users quickly.
Comprehensive Study Plan: The guide includes a well-organized study plan inspired by "A Study Plan to Cure JavaScript Fatigue," specifically designed for beginners in front-end development.
Recommended Libraries and Frameworks: Grab suggests specific tools and libraries that align with their current practices, helping new developers focus on what's most relevant and applicable in their roles.
Learning Resources: Each recommended library or framework comes with curated links to learning resources, making self-directed exploration and learning more accessible.
Alternative Choices: The guide recognizes that different projects may require different approaches, offering alternative options for tools and frameworks, allowing for personalized learning paths.
Periodic Updates: Grab commits to periodically update the guide to reflect the latest developments and choices in their front-end technology stack, ensuring the content remains relevant.
Pre-requisites Mapped Out: The guide outlines the foundational skills required before diving into advanced front-end topics, ensuring readers come prepared with the necessary knowledge.
Focus on Maintainability and Testing: Emphasizing best practices, the guide includes sections that cover coding standards, maintainability, and testing, vital for long-term success in front-end development.

React is a widely used JavaScript library for building user interfaces and single-page applications. It follows a component-based architecture and uses a virtual DOM to efficiently update and render UI components
SCSS is a preprocessor scripting language that extends the capabilities of CSS by adding features such as variables, nesting, and mixins. It allows developers to write more efficient and maintainable CSS code, and helps to streamline the development process by reducing repetition and increasing reusability.
ESLint is a linter for JavaScript that analyzes code to detect and report on potential problems and errors, as well as enforce consistent code style and best practices, helping developers to write cleaner, more maintainable code.
Redux is a state management library for JavaScript apps that provides a predictable and centralized way to manage application state. It enables developers to write actions and reducers that update the state in response to user interactions, server responses, and other events, and can be used with a variety of front-end frameworks and back-end technologies.
Stylelint is a modern linter for CSS that helps you avoid errors and enforce consistent styling conventions. It provides rules for detecting errors and warnings, and can be configured to match your specific project's requirements.
Webpack is a popular open-source module bundler for JavaScript applications that bundles and optimizes the code and its dependencies for production-ready deployment. It can also be used to transform other types of assets such as CSS, images, and fonts.