January 8, 2020 Adem Bilican No comments

Creating a simple back-end with ExpressJS

Today’s topic is ExpressJS, a web framework for NodeJS. You can use ExpressJS if you need any back-end program, for example for a web-app or a REST API. In this article, I will take you through the installation of ExpressJS and the creation of a very simple project. 1. Creating an empty nodeJS project Let’s […]

February 11, 2019 Adem Bilican No comments

Write and compile your first Dapp using Solidity and Node.js

There are already several tutorials of that kind available on the Internet. However, I couldn’t follow any of them from the begining to the end without issues, so here is my own tutorial about how to write and compile your very first smart contract for the Ethereum blockchain. This first article is all about the […]

November 9, 2018 Adem Bilican 2 comments

How to create a react-native bridge library for iOS

React-Native allows user to create bridges to access native code from JavaScript. Once you have created your own bridges you might want to share them with the community. This article will explain in a few simple steps how to do so. 1. Create a new project with react-native-create-library Open your terminal and run This will […]