- 15
- 204 098
Christian Martins Web Development
เข้าร่วมเมื่อ 18 ม.ค. 2011
This is a web development and technology channel focused on providing first-class entertaining tutorials, reviews, and vlogs. The mission is to provide educational videos that are fun and different in web development and technology.
Server Setup & Hosting React Application
A tutorial on setting up a server and hosting a web site/web application from scratch. We use Apache, Google Cloud, React, and Git to manage our code. This is a great tutorial for beginners that are new to this phase of web development.
Basic React App - github.com/Mau5Machine/afkdevyt
NVM Installation - www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-18-04
Basic React App - github.com/Mau5Machine/afkdevyt
NVM Installation - www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-18-04
มุมมอง: 513
วีดีโอ
Traefik TLS Let's Encrypt Tutorial
มุมมอง 13K4 ปีที่แล้ว
This is a tutorial on how to secure your site with Traefik and Let's Encrypt. Traefik Let's Encrypt Docs - doc.traefik.io/traefik/https/acme/ Traefik HTTP Challenge Example Docs - doc.traefik.io/traefik/user-guides/docker-compose/acme-http/ Traefik TLS Challenge Example Docs - doc.traefik.io/traefik/user-guides/docker-compose/acme-tls/ Like & Share this video if it added value and subscribe to ...
Build REST API with Node, Express, Sequelize
มุมมอง 23K4 ปีที่แล้ว
In this tutorial, I build a REST API from scratch using NodeJs, Express, and Sequelize. This is a great video for someone who is interested in building a REST API and needs direction. This is also a great boilerplate project and starter template for your own REST API. Access the project here - github.com/Mau5Machine/rest-api-boilerplate Sequelize Docs - sequelize.org/v5/ Express Docs - expressj...
Best Postman Basics Tutorial
มุมมอง 2644 ปีที่แล้ว
This video is a tutorial on the basics of the API tool "Postman". Postman is the collaboration platform for API development. Postman simplifies each step of building an API and streamlines collaboration so you can create better APIs-faster. In this tutorial, I go over Collection, Requests, and how to manage and handle the basic features of the software. I use Postman to keep my API testing proc...
Axios Promise Based REST HTTP Tutorial
มุมมอง 1.3K4 ปีที่แล้ว
This is a tutorial going over the basics of Axios. Axios is a promise-based HTTP client for NodeJs. In this tutorial, I go over a real-life use of this amazing HTTP client in one of my projects. With Axios, you can hit your REST endpoints with ease! Axios is a great replacement for the Fetch API in Node. I've attached the documentation to this description so that you can start using this tool r...
FullStack Backend - GraphQL, Docker, Sequelize, Apollo Server, and Sessions
มุมมอง 2.6K4 ปีที่แล้ว
This is part one in a two-part series on creating a full-stack web application. In this part, we are setting up the entire backend. The stack included in this video is GraphQL, Express, Express Session, Apollo Server, Sequelize, and Postgres. This is a thorough step by step video explaining how to put together a fully functioning GraphQL backend with sessions. Repository - github.com/Mau5Machin...
Docker Node, React, MongoDB - Part 2
มุมมอง 2.5K4 ปีที่แล้ว
This is a part 2 tutorial on how to put your node app inside different containers that talk to each other on a bridge network with a single Docker Compose file. We will wrap this up by launching and building all these containers with one single docker-compose command. Docker Compose File reference - docs.docker.com/compose/compose-file/ App Repository - github.com/Mau5Machine/docker-course
Traefik Proxy with Prometheus and Grafana Metrics
มุมมอง 8K4 ปีที่แล้ว
This is a basic tutorial on how to setup Traefik proxy with prometheus metrics and a grafana dashboard to view the data. Thank You to Traefik for sending me the swag and providing us with this awesome prxoy service! Thank you to Brian Christner/vegasbrianc for creating this repository to make it so easy for us to run this setup. The link to the repository used in this video is listed below. veg...
Traefik Proxy v2.0 Docker Basic Tutorial
มุมมอง 75K5 ปีที่แล้ว
This is a basic tutorial on how to setup Traefik proxy with a docker compose file, and how to navigate the configuration. This video is meant to teach you how to use traefik as a proxy for your docker containers to serve your app or website. The docker-compose file used in this video is located at - gist.github.com/Mau5Machine/00401feb19433cf0387cc66c8e90c26c Dynamic configuration file is at - ...
Docker Node, React, MongoDB - Part 1
มุมมอง 13K5 ปีที่แล้ว
This is a tutorial on how to put your node app inside different containers that talk to each other on a bridge network. We will containerize a MongoDB instance, a React app served with NGINX, and a node server to talk to the database. This is a two-part video, the first part we will set up the individual containers and get them running. Dockerfile reference - docs.docker.com/engine/reference/bu...
5 Tips for becoming a web developer
มุมมอง 2445 ปีที่แล้ว
This is a video that offers tips and advice for new developers who are in the process of finding a new career or anyone who just needs practical advice to become better at web development. All of these tips come from real personal experience in making a transition to becoming a web developer. I'm a self-taught web developer from South Florida and I was able to get into my dream career by applyi...
Postgres GraphQL in minutes! Hasura GraphQL Engine
มุมมอง 16K5 ปีที่แล้ว
This is a short introduction to Hasura GraphQL Engine and how to set it up on your local machine inside of a Docker Container. Hasura applies an API layer on top of your Postrgres database allowing you to instantly start running graphql queries, mutation, and subscriptions without ANY configuration. It also provides you with an easy to use graphical console to create tables, relationships, and ...
React Apollo Hooks useMutation
มุมมอง 7K5 ปีที่แล้ว
A short video tutorial on how to use the useMutation hook from Apollo to use in your React application. In this video, we will be deleting items from a list and introducing the properties and methods of the useMutation hook that you can use in your application. to manipulate data on the client. useQuery Hook video - th-cam.com/video/8uU6IHMBDao/w-d-xo.html Apollo/React Hooks Documentation - www...
React Apollo useQuery Hook
มุมมอง 6K5 ปีที่แล้ว
This is a very basic tutorial on how to use react apollo hooks to pull data into your application. We will hit a graphql endpoint and render a list of data to the screen in this example. Apollo useQuery Docs: www.apollographql.com/docs/react/api/react-hooks/ Example project github: github.com/Mau5Machine/useQuery-hook