Membangun Graphql Api Services Dengan Asp Net Core


Download Membangun Graphql Api Services Dengan Asp Net Core PDF/ePub or read online books in Mobi eBooks. Click Download or Read Online button to get Membangun Graphql Api Services Dengan Asp Net Core book now. This website allows unlimited access to, at the time of writing, more than 1.5 million titles, including hundreds of thousands of titles in various foreign languages.

Download

Membangun GraphQL API Services Dengan ASP.NET Core


Membangun GraphQL API Services Dengan ASP.NET Core

Author: Rully Yulian MF

language: id

Publisher: Native Enterprise

Release Date: 2020-08-08


DOWNLOAD





Buku ini membahas tentang pengembangan API Services menggunakan GraphQL di atas framework ASP.NET Core. GraphQL merupakan sebuah bahasa untuk melakukan query atau manipulasi resource atau data terhadap sumber data seperti database. Selain itu graphql juga menyediakan runtime untuk memproses query dan object graphql lainnya. Bahasa dan runtime ini awalnya dibangun oleh facebook pada tahun 2012 untuk digunakan secara internal. Pada tahun 2015 graphql mulai dipublikasikan secara open source untuk umum. GraphQL menyediakan alternatif lain untuk pengembangan api services selain yang berbasiskan REST. Beberapa perusahaan terkemuka termasuk facebook sendiri sudah banyak yang menggunakan graphql seperti github, pinterest, airbnb, paypal, twitter, dan lainnya. Ada beberapa hal yang membedakan graphql dengan rest services diantaranya yaitu: · GraphQL menyediakan data sesuai dengan kebutuhan, tidak kurang dan tidak lebih. Output data properti atau kolom dapat ditentukan secara dinamis, berbeda halnya dengan rest services yang sudah ditentukan data dari kolom apa saja yang akan ditampilkan. · GraphQL menyediakan satu endpoint untuk semua resource atau semua data yang disediakan, berbeda halnya dengan rest api yang menyediakan resource atau data melalui beberapa endpoint atau beberapa controller. · Respon data yang ditampilkan dari graphql secara struktur akan sama dengan struktur data yang direquest oleh client. · GraphQL dapat menyediakan beberapa resource atau data sekaligus dalam satu request. Rest services harus menyediakannya dengan beberapa url. Topik-topik yang dijelaskan dalam buku ini mulai dari penjelasan arsitektur graphql & asp.net core; instalasi library-library yang diperlukan; pembuatan asp.net core web di visual studio; penggunaan ef core untuk akses database sql server & postgresql; penggunaan query dan mutation; penggunaan tools untuk akses graphql; penggunaan logging dan data loader; real-time services dengan subscription; implementasi asp.net core identity; penggunaan jwt authentication; deployment; dan masih banyak lagi yang lainnya. Pembahasan pada buku ini dilakukan secara bertahap, sehingga diharapkan setelah mempelajarinya pembaca akan memiliki skill atau kemampuan yang cukup untuk membangun layanan berbasiskan GraphQL dengan ASP.NET Core sesuai dengan kebutuhan di lapangan. Semoga buku ini dapat menjadi alternatif lainnya sebagai sumber pembelajaran latihan, tutorial, atau referensi bagi mereka yang ingin mempelajari pemrograman backend GraphQL API Services dengan ASP.NET Core yang terhubung ke database SQL Server dan PostgreSQL.

Learning SQL & PL/pgSQL Programming in PostgreSQL


Learning SQL & PL/pgSQL Programming in PostgreSQL

Author: Rully Yulian MF

language: en

Publisher: Native Enterprise

Release Date: 2020-08-30


DOWNLOAD





This book is one of the many sources that are scattered outside to learn SQL and PL/pgSQL programming in the PostgreSQL database which is compiled with an emphasis on direct practice and is based on the author's teaching experience so far, so that readers are expected to better understand the concept and programming practice in PostgreSQL databases. At the time of writing, the PostgreSQL database has reached version 12.2, therefore this book is based on this version for use on the Windows operating system. The discussion on this book is done gradually, so it is hoped that the readers will have enough skills or ability to implement database solutions according to the needs in the field. Hopefully this book can be another alternative as a learning resource for exercises, tutorials, or a reference for those who want to learn SQL and PL/pgSQL programming in the PostgreSQL database.

Building REST API Services using Deno and PostgreSQL


Building REST API Services using Deno and PostgreSQL

Author: Rully Yulian MF

language: en

Publisher: Native Enterprise

Release Date: 2020-05-28


DOWNLOAD





This book learns about developing web services based on REST architecture using Deno. Deno is the latest server runtime environment for typescript and javascript in addition to node.js which is well known to date. Yes, deno was created by Ryan Dahl who created node.js itself, will deno be the next node.js successor? Of course there are reasons behind developing a new runtime for executing typescript and javascript. Architecturally, for deno runtime javascript it still uses Google Engine V8 just like the previous node.js, but this time the deno was built using Rust and TypeScript languages, while node.js was built with C ++ and JavaScript. For asynchronous runtime and event driven deno use the open source library, Tokio. Deno support typescript built-in or out of the box in the sense can be used directly without having to first configure settings, unlike node.js. The use of javascript is also supported in addition to typescript. Deno is more secure than node.js, because by default deno cannot access files, environment access, network, without explicit declaration. What is discussed in this book? Here are the points: - Introduction and installation of deno along with visual studio code as a code editor - Use standard modules for http servers - Use of third party modules such as oak to handle requests, responses, and routing - Creating a controller and routing for CRUD functionality for the postgresql database - Using Denon to automate the compilation and deno project running - Implementation of middleware for authentication - Implement bcrypt module for password hashing - Implementation of authentication using JWT - Implementation of https server - Refactoring module - Repository pattern - Access user defined functions and stored procedures in postgresql - Bundling project - The use of PM2 as monitoring tools - The use of denoDB ORM Hopefully this book can be another alternative as a source of learning exercises, tutorials, or references for those who want to learn Deno programming.