Skip to main content

Web Development

WebD is probably the most popular part of SD at our level. It is the most robust and cutting edge part that one can jump right into without much prior knowledge and learn as you work.

Preface

Starting from the very basics of HTML, one can build up to JavaScript frameworks. There are always other server side rendering languages that will be discussed briefly.

HTML and CSS

HTML is essentially the language designed to present data in a web browser. HTML5 is the latest form of the "language" that basically uses certain tags as elements that can also be nested.

The reason why it is generally grouped with CSS is beacuse of how they are closely related to basic website showcasing. CSS3 is currently used to make webpages more presentable and user friendly with basic styling instructions.

Both of these are a great starting point to learn something that has an immidiate outcome. Hence the popularity.

Following are the intented resources:

JavaScript

JS is a "scripting" language, meaning it isnt compiled. It is interpreted directly during execution into some sort of bytcode that can later be compiled by the system as per its specifications. It can range in wide varity of softwares and is a frequent first choice of developers. There's plenty of tutorials to chose from:

CourseFormat and SkillsDetails
JavaScript30videos, docs: HTML, CSS, JSThe perfect course for a walkthrough of basics from scratch
Thapa Technicalvideo: JSA collection of projects and tutorials in one video
Courseravideos, docs: HTML, CSS, JSFramework offered by Coursera
Udemyvideos, docs: HTML, CSS, JSFull stack offered by Udemy

JavaScript Environments

JS, in conjunction with the V8 engine that essentially assembles a webapp outside of a browser, is used to set up environments such as nodejs. This helps create really high end apps at a large scale. Consequently, the diverse range of development is broken into 3 parts:

  • Frontend: The visuals. This is what a user interacts with.
  • Backend: The backend isnt apparent to the user, but is essentially the brains how things communicate and come together in an app dynamically.
  • Database: The part that is concerned with the storage of, well, data. Database designs and methods are something that go a long way back because of how essential it is.

One can check:

CourseFormat and SkillsDetails
Thapa Technicalvideos: MERNA full stack playlist
FreeCodeCampvideo: MERNCrash Course in MERN

And Fronted/Backend specific tutorials include:

CourseFormat and SkillsDetails
Thapa Technicalvideos: ReactJSA perfect playlist of everything ReactJS
Thapa Technicalvideos: ExpressJSA walkthrough of ExpressJS with fun challenges

TypeScript

JavaScript, as one can observe, is very free with declarations of variables. It is what is called a dynamically typed language. This may create issues during runtime. This is why we have a certain subset of the JS framework that can work with static types called TypeScript, together with other abilities such as a compiler used to "watch" some piece of code live. Academind hosts a crash course for beginners.

Other Frameworks

There are other frameworks worth exploring. These include the python based Flask and Django, Golang and Rust.

CourseFormat and SkillsDetails
Official Documentationdocs: DjangoAn official walkthrough. This video tutorial by Corey Schafer is also a good start.
Go By Exampledocs: GoLearning Go through code snippets
FreeCodeCampvideo: GoCrash course style video of Go
The RustBookdocs: RustOfficial Rust documentation. Clearly sufficient