Author: Nic Raboy
Getting Started With GraphQL Development Using Node.js
I've been playing around with GraphQL for a little over a month now, just to see if it is worth all the buzz it has been getting when it comes to modern API development. I must say that the more I use it, the more I'm coming to like it.
I recently wrote a few tutorials around getting started with GraphQL using Golang, but being the polyglot that I am, I wanted to see how difficult it would be to accomplish the same in something else, like Node.js. After having made an attempt, I found that it really isn't any different as it is the same concept, just a different language.
We're going to see how to get started with developing a web application with Node.js that can be queried with GraphQL rather than the traditional RESTful API endpoint approach.
Read MoreTPDP Episode #18: Progressive Web Application Development
I'm pleased to announce that the latest episode of The Polyglot Developer Podcast, titled Progressive Web Application Development has been published to all of the major podcast networks.
In this episode, which is the eighteenth on the show, I'm joined by Tara Manicsic who is a Google Developer Expert (GDE) and works for Progress Software, the company behind Kendo UI. We discuss everything from where applications are headed and how they can function effectively as PWAs.
Read MoreMaintain Data Relationships Through Resolvers With GraphQL In A Golang Application
I recently wrote about getting started with GraphQL in a Golang application, where I discussed the creation of schemas, executing queries, and mutating data, even though it was all mock data. In this example there were queries for related data, but they were constructed in a very independent form.
We're going to see how to query for related data, similar to what you'd find in a JOIN operation on a relational database, but using GraphQL and the Go programming language.
Getting Started With GraphQL Using Golang
I've been hearing increasing amounts of buzz around GraphQL, a technology that has been around for quite a few years now. In case you're not familiar, it is a technology for querying API data from a client-front end without having to make numerous requests or receiving unimportant data, both of which may cause negative affects on network latency.
Think of trying to query a relational database. Ideally you write a SQL query for the data you want and you do it in a single request. GraphQL tries to accomplish the same, but from an API consumption level.
We're going to see how to implement a web application using the Go programming language, but uses GraphQL when working with the data.
Read More3 Of The Best Frameworks For Mobile App Development In 2018
Mobile development is a necessity for every modern business, but there are many ways to get the job done. Many will tell you to go pure native, some will tell you to go hybrid, and others will tell you to use a framework to go cross-platform native.
We're going to review my top three picks for mobile development frameworks that will thrive in the 2018 year.
Read MoreHow To Come Up With An App Idea And Execute In Development
I've been developing applications both as a hobby and professionally for quite some time now. I've released top ranking mobile applications to the various app stores and even sold the rights to applications.
One question I get asked quite a bit is in regards to how I come up with those ideas and execute on them for a successful release. Being a solid developer is one thing, but having a solid plan is another.
I'm going to share my process so you can be more successful with your web and mobile application releases.
Read MoreSimple User Login in a Vue.js Web Application
Sometimes the best examples towards learning a new framework is through a simple user login sample. Login involves many concepts, including forms, data binding, routing, and potentially HTTP to a remote service, all of which are core concepts in any web application.
We're going to see how to implement a simple login form in a web application that uses the Vue.js JavaScript framework.
Read MoreSearch
Recent Posts
- Resty Desktop, a GUI for the Restic Backup Application
- Test Password Strength and Password History with TypeScript and MongoDB
- Extract Text from Your PDF and Image Files with Apache Tika
- How to Install MongoDB on Ubuntu: A Step-by-Step Guide for Beginners
- Running MongoDB in Docker - A Complete Guide with Examples