lesson
How to Render Lists with the Vue v-for Directive30 Days of VueToday we're going to work through how the **v-for** directive can be used to dynamically render a list of elements based on a data source.
lesson
What are Vue Directives? with examples30 Days of VueThe last article was a little heavy on discussion. In today's article, we’ll dive into more code examples by addressing some important native Vue **directives**.
lesson
How Reactive Data Works in Vue Applications30 Days of VueIn yesterday’s article, we’ve come to understand how data behaves reactively in Vue. Today, we’re going to spend a little more time discussing this behavior since it plays an especially important role in how we build applications in Vue.
lesson
Understanding Vue Instance and the Data Property30 Days of VueNow that we know how to instantiate a Vue application with the Vue instance, let's take a deeper look into how the data property of a Vue instance helps enable reactivity.
lesson
How to Build Your First React Native App with Expo30 Days of React NativeBy the end of this article, we’ll have an application up and running on a real device or simulator!
lesson
What is React Native? Building iOS and Android Apps With React.30 Days of React NativeReact Native allows us to build a mobile application for iOS and Android in a single language and framework.
lesson
A Beginner's Guide to GraphQL Schema LanguageThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptThe GraphQL schema language is a human-readable syntax to help create GraphQL schemas. In this lesson, we'll use the GraphQL schema language to re-create the schema we have in a more readable and simpler format.
lesson
How to Use GraphQL Mutations and QueriesThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this lesson, we'll look to mimic the listings retrieval and manipulation we had in our Express RESTful API but with GraphQL instead.
lesson
How to Build a GraphQL Schema with GraphQL.jsThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this lesson, we'll use the Apollo Server and GraphQL JavaScript libraries to create a minimal GraphQL API that we'll be able to interact with in an IDE environment known as GraphQL Playground.
lesson
How to Install Apollo Server for GraphQLThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this lesson, we'll install the Express variation of the popular Apollo Server library and the GraphQL JavaScript library.
lesson
GraphQL Schema, Object Types, and Function ExamplesThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this lesson, we introduce and discuss some of GraphQL's main concepts such as the GraphQL schema, object types and resolver functions.
lesson
GraphQL vs REST APIs, and When to Use GraphQLThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptBefore we continue discussing some of the core concepts in GraphQL, we'll take a bit of a tangent in this lesson to contrast and compare Github's existing REST API (v3) and their GraphQL API (v4). We'll dive into a good example that showcases GraphQL before we discuss and address some of GraphQL's core concepts.