First acquaintance with React Native

Of course, I’m just one of thousands who started building apps using React Native. But whatever, it’s a cool experience.

April 25, 2021

Django REST API with React App step-by-step

I use PyCharm for python projects and pipenv for package management. Start new PyCharm project named django-rest-react-blog Optionally git init clone gist .gitignore for Django and React projects Main course pipenv install django pipenv install djangorestframework pipenv install ipython --dev django-admin.py startproject bookcase cd bookcase python manage.py startapp mainapp Edit bookcase/settings.py: ... INSTALLED_APPS = [ ... 'rest_framework' ] ... TEMPLATES = [ { ... 'DIRS': [BASE_DIR / 'mainapp-ui/build'], ... }, ] ....

February 27, 2021

First acquaintance with react

I wrote a traditional application for such kind of training cases in React. This is a simple to-do list. In my app, I don’t use any extensions for state management. Only clean React with state saving in local storage. I spied the main ideas on the Udemy course “React + Redux. Professional development”. But mostly I tried to write the code myself. I would like to dive into React Native a bit and migrate this app to Android....

November 29, 2020