Authentication and Authorisation is the key to protect resource on the web server. There are different types of authentication models such as Basic, Token and Session. Thanks to Django Rest Framework, it provides a work with one or many of…
When it comes to modern era of Web with microservices and service oriented architecture applications depend on the web API calls. Thankfully NodeJS offers the many different ways to request a resource through web API call or HTTP request. Some…
Learning the node for backend web application enables makes you the full stack web developer. Using node for backend web application will leverage the strength of asynchronous and even driven nature of javascript An example of hello world web application…
COMMAND check usage: django-admin check [-h] [--tag TAGS] [--list-tags] [--deploy] [--fail-level {CRITICAL,ERROR,WARNING,INFO,DEBUG}] [--database DATABASES] [--version] [-v {0,1,2,3}] [--settings SETTINGS] [--pythonpath PYTHONPATH] [--traceback] [--no-color] [--force-color] [app_label ...] Checks the entire Django project for potential problems. positional arguments: app_label optional arguments: -h,…
Django the popular web development framework for Python. It is based on Model View and Template referred as MVT. Install Django as follows This article takes to the directory structure of whole Django framework and explains what each package and…
To enable cross origin resource sharing we need to enable some headers to authorize origin (browser ) to make requests to cross(different) origin. Browsers make preflight request to determine whether the given origin can make request to cross origin web…
Python is general purpose, high level scripting language. It is known for it’s elegant syntax, readability and productivity. As it is said, python is general purpose programming language such that it can be used to create backend web applications. For…
Flask is micro web development framework unlike Django flask doesn’t comes with everything with end to end solution like ORM etc. Sometimes which good because you don’t want bhramhastra to kill sparrow. Such that, not to make things unnecessarily complicated…
React Project involves boiler plate code, why reinvent the wheel and do the repetitive task when time can be saved to setup react project and quick start on it. This article gives you guide on how to setup react project…
To host a static website on AWS S3, you need the following resources Registered domain Access to domain registrar (Ex: GoDaddy, AWS area51) to configure DNS CNAME AWS Management Console Access using root user or IAM S3 Full Access Permissions…