Web Development
-
Setting up React Project with create-react-app
The “Create react app” helps you avoid boilerplate code. But, to create react app by yourself manually will help you understand the how different compoents work together Steps we…
-
How to enable TokenAuthentication scheme | Django Rest Framework
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…
-
NodeJS: How to make HTTP request
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…
-
Hello World HTTP Server in Node
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…
-
Django: django-admin command reference
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 Framework: Packages and Modules Directory Structure Explained
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…
-
How to Enable Cross Origin Resource Sharing (CORS) on Django REST Framework
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…
-
Django vs Flask: Comparison between Django and Flask
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…
-
How to Run Your First Flask Application
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…
-
Setting up React Project
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….