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 15, 2019 Adem Bilican No comments

How to add a linter to your React Native project

The definition of linting on Wikipedia is pretty clear :”Lint, or a linter, is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs”. Photo by unsplash-logoJames Pond on Unsplash By using a linter in your React Native project you’ll be able to catch code errors early on and […]

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 […]

June 17, 2017 Adem Bilican 14 comments

How to submit an Electron app to the mac appstore?

  1- Create a Bundle ID for your app The very first step to be able to send a mac app to the appStore is to create a unique Bundle ID for it: go to your Apple Developer Account click Certificates, IDs & Profiles select macOS in the top-left dropdown list click on App IDs […]