Web Development

  • Django App Deployed on Apache with HTTP

    How to deploy Django App on Apache with SSL using Let’sEncrypt

    On debian based linux or ubuntu, install the apache server remove the default page using command To configure Django application with apache, you need the mod_wsgi module installed for…

    neotam Avatar
  • Setting Up React Project without create-react-app3

    Setting up React Project with out using 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…

    neotam Avatar
  • How to enable TokenAuthentication scheme | Django Rest Framework

    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…

    neotam Avatar
  • NodeJS: How to make HTTP request

    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…

    neotam Avatar
  • Hello World HTTP Server in Node

    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…

    neotam Avatar
  • Django: django-admin command reference

    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…

    neotam Avatar
  • Django Framework: Packages and Modules Directory Structure Explained

    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…

    neotam Avatar
  • How to Enable Cross Origin Resource Sharing (CORS) on Django REST Framework

    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…

    neotam Avatar
  • Django vs Flask: Comparison between Django and Flask

    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…

    neotam Avatar
  • How to Run Your First Flask Application

    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…

    neotam Avatar