Explore all newline lessons
lesson
Better testing with Vue Test Utils30 Days of VueToday, we'll look at Vueās official testing library called [**Vue Test Utils**](https://vue-test-utils.vuejs.org/) that makes testing fun and relatively easy.
lesson
Testing the App30 Days of VueToday, we'll start creating unit tests by looking at a few features of our application, thinking about where the edge cases are and what we assume will happen with the component.
lesson
Implementing Tests30 Days of VueYesterday, we discussed the importance of testing and some of the different types of unit testing libraries/suites that exist. Today, we'll begin to see unit testing in action.
lesson
Introduction to Testing30 Days of VueTest suites are an upfront investment that pay dividends over the lifetime of a system. Today, we'll introduce the topic of testing and discuss the different types of tests we can write.
lesson
Introduction to Module 3The newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this module, we'll install Apollo Server and the GraphQL JavaScript library, create a GraphQL Schema, build GraphQL resolver functions to interact with our mock data, and recreate our schema with the much simpler GraphQL Schema Language.
lesson
Introduction to Module 2The newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this module, we'll explain what GraphQL is, compare Github's REST and GraphQL APIs, and dive deeper into some core concepts of GraphQL.
lesson
Build Example Mock Data to Test a GraphQL ServerThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptTo help us get started, we'll begin by introducing a mock data array of rental listings in this lesson. This will help us get started before we begin to address more appropriate data persistence.
lesson
How to Add Vue Router to an Application30 Days of VueWith our application scaffold established in the last article, let's use Vue's official client-side routing library, **Vue Router**, to enable routing in our application.
lesson
An Introdution to Routing in Vue with examples30 Days of VueThe majority of large-scale applications we tend to create will usually have multiple views be kept in different routes. Today, we'll discuss client-side routing and set up the starting point of the routing application we'll build.
lesson
How to Add Vuex to a Vue Application for State Management30 Days of VueWith the knowledge of the Flux pattern and Vuex, let's integrate Vuex onto a Vue application to build on top of the things we've learned using a simple global store.
lesson
How to Use Simple Global Store for Vue State Management30 Days of VueYesterday, we gathered an understanding of how a global EventBus can use its events interface to have isolated components communicate with one another. Today, weāll see how a **Simple Global Store** can be a more useful approach to handling state management.