STOP messy code! Tidy code workflow with Webflow

  Рет қаралды 1,864

Web Bae

Web Bae

Күн бұрын

Better code workflows for the Webflow enthusiast with industry-standard tools like Github, VS Code, and jsDelivr. I'll show you how to create a repository with Github desktop, iterate on code locally, create a release on Github, host it via CDN with jsDelivr, and manage versions.
// CLONE IT
👯‍♂️ webflow.grsm.io/cloneable-is-...
// FREE STUFF
💪 My ULTIMATE Webflow Resource Library: code-snippets-sign-up.webflow.io
// SUPPORT ME
💵 Patreon: / webbae
// ADVANCED WEBFLOW COURSE
🎓 Webflow 201: www.webbae.net/product/webflo...
// GET HELP
🙋‍♀️ Discord: / discord
// FOLLOW ME
🐥 Follow Me! / webisbae
// TOPICS
00:00 Intro
00:28 Create Project
01:59 Host code locally with live server
02:40 Create a Github release
03:43 Host via CDN with jsDelivr
04:49 Managing versions

Пікірлер: 34
@aminabudahab
@aminabudahab 2 ай бұрын
Clear and concise, thanks ❤
@webbae
@webbae 2 ай бұрын
hope it helps!
@dimka_tregubov
@dimka_tregubov 10 ай бұрын
Great video, thank you!🙌
@sung-dukkang7488
@sung-dukkang7488 10 ай бұрын
Thank you for this!
@webbae
@webbae 10 ай бұрын
Glad it was helpful!
@tapumojumder6090
@tapumojumder6090 Ай бұрын
very helpful
@webbae
@webbae Ай бұрын
Glad to hear that
@wisssse
@wisssse 3 ай бұрын
Is there a tutorial on how to use this for gsap animations? I'm trying to learn the basics of code by myself. I've just started a gsap course becasue of your newsletter, and so far I really like it. However, since I don't have a technical knowlegde yet, it is pretty difficult to set it up. In some other videos, I saw that you're using a skypack CDN to import gsap. I've tried this as well, but the animation doesn't work. Do you know how I can get it done step by step?
@heatherliu6856
@heatherliu6856 10 ай бұрын
Wicked sharp, innit bruv
@webbae
@webbae 10 ай бұрын
love fam.
@grantfaucher
@grantfaucher 10 ай бұрын
Great video! I saw some tweet about a CMS Like button using Make. Would love to see how that is setup! Saw a few other people who replied that they were interested as well. I think the Webflow community is begging for a tutorial LOL
@webbae
@webbae 10 ай бұрын
haha thanks it's on the list. It's not quite production grade though... there are some limitations I've been exploring how to get around 100% in Make but haven't come up with a great solution. The implementation I tweeted about updates the Webflow CMS, but requires publishing the site for the updated numbers to show, so it's a lackluster UI in my opinion. It teaches a good concept but not quite useable. Would you still be interested in seeing how to build that? My fully reactive solution to a like button with CMS would use code. Would you prefer that or the more limited approach with Make?
@grantfaucher
@grantfaucher 10 ай бұрын
@@webbae Love it, thanks for the reply! Look forward to seeing the tutorial if/when it comes out! Also I remember FInsweet having CMS Favoriting on their 2023 Roadmap for Q2 but I guess it got sidelined. I managed to put some code together using Chat GPT for favouriting items and then creating a filtered collection list of only saved items (display: none for all unsaved items). But the problem is that all items are loaded into the DOM and not just the saved items so it makes the site heavy. I wanted to pick your brain to see if it was possible to filter a list completely before all items are loaded into the DOM. I appreciate your videos, they have helped me level up my noob status.
@webbae
@webbae 10 ай бұрын
@@grantfaucher I'd love to see what your project requirements are. Shoot me a DM on twitter or in my Discord channel.
@jeffamcavoy
@jeffamcavoy 10 ай бұрын
Thanks for showing this full process! I’m curious about your thoughts on using Slater App for JS code in Webflow. Are there advantages to this method vs Slater?
@webbae
@webbae 10 ай бұрын
There's a lot to talk about here. I haven't used Slater a ton but for someone who just wants a good option to writing JS in Webflow, it seems to be really cool! Here are some reasons I use this setup over Slater: 1. Integration with Github - what we use for collaboration at Finsweet. 2. Environment setup and bundlers. This is the big one. Allows me to use tools like npm and create custom build processes. I'm pretty much always using Typescript now, unless I'm teaching JS on YT. 3. Bring your own AI (I use Github Copilot (GPT3.5 I believe) and GPT4 via the openai ui). 4. Integrations with lots of other tools... azure cloud, google cloud. Most of this is not necessary if you just want to write JS more easily than in the Webflow editor.
@smith-cordell
@smith-cordell 6 ай бұрын
Hey @webbae would you consider doing a follow-up video about npm and compiling?
@webbae
@webbae 6 ай бұрын
You might enjoy this video: kzbin.infokXNsQ4gpMKs?si=9VJF4alrSEiJeVPM
@webbae
@webbae 6 ай бұрын
I also plan to cover npm, node, and build tools more in depth in my JavaScript course on Patreon.
@twlysh
@twlysh 10 ай бұрын
hey Web Bae, any ideas for a messy closet. My code is tight but my room is a blight!
@webbae
@webbae 10 ай бұрын
closet is a great place to hide things so no worries about it being messy. If you store anything secret in there guaranteed your Dad won't find it for at least 3 years! 🤣
@Lars_Isman
@Lars_Isman 10 ай бұрын
How would you manage this for a client? Would the code be in your own GitHub account or would you create one for the client?
@webbae
@webbae 10 ай бұрын
Depends on the client. Small - Probably just use my own organizational account. Large - Have them setup Github In general I do believe each client should own their content regardless of size so would push for them to have their own accounts but sometimes clients just aren't that technical and don't want to do that. Since the code is public on Github anyways if another dev came in two years later they would be able to grab the code if they needed it.
@webbae
@webbae 10 ай бұрын
If you want to keep the code private and only serve minimized code, then it's a little different.
@brandocean6322
@brandocean6322 10 ай бұрын
Whats the best way to hide a API private key in your code.
@webbae
@webbae 10 ай бұрын
you need to use middleware. I use cloudflare workers.
@brandocean6322
@brandocean6322 10 ай бұрын
Thank you
@marcusfrancis24
@marcusfrancis24 5 ай бұрын
Do you prefer this method over codesandbox?
@webbae
@webbae 5 ай бұрын
Yes.
@marcusfrancis24
@marcusfrancis24 5 ай бұрын
@@webbae how do you go about setting up a boilerplate or package vs code, git hub, with common libraries and animationsnlike gsap, sliderJs, barbajs etc and deploy it in new webflow projects for each client?
@webbae
@webbae 5 ай бұрын
I use this method
@webbae
@webbae 5 ай бұрын
This video goes more in depth kzbin.info/www/bejne/naKTm6pplMlof8ksi=H2h5zqP5ZFkgpvt7
Why I won't switch to Framer (vs. Webflow)
18:25
Web Bae
Рет қаралды 4,5 М.
Interactive 3D in Webflow with React Three Fiber + CodeSandbox
1:03:52
Diego Toda de Oliveira
Рет қаралды 8 М.
I Can't Believe We Did This...
00:38
Stokes Twins
Рет қаралды 127 МЛН
Now THIS is entertainment! 🤣
00:59
America's Got Talent
Рет қаралды 38 МЛН
Эффект Карбонаро и нестандартная коробка
01:00
История одного вокалиста
Рет қаралды 9 МЛН
НРАВИТСЯ ЭТОТ ФОРМАТ??
00:37
МЯТНАЯ ФАНТА
Рет қаралды 1,6 МЛН
Host Your Webflow Website for Free: A Step-by-Step Tutorial
8:55
Ludovic Losco
Рет қаралды 1,9 М.
A intro to FlowDrive with creator Manuel Ogomigo.
1:03:03
The Visual Div | Webflow and Stuff
Рет қаралды 71
Git and GitHub Crash Course For Beginners | Complete Tutorial [2024]
1:53:19
Git MERGE vs REBASE: The Definitive Guide
9:39
The Modern Coder
Рет қаралды 94 М.
Strapi v4 Crash Course 2023 [ Getting Started with Strapi ]
1:10:35
Coding After Thirty
Рет қаралды 51 М.
Webflow + Javascript: 3 Tips To Improve Your Code!
10:55
Mike Pecha
Рет қаралды 6 М.
Cloudflare and Webflow: I made them work together!
4:52
Create Today
Рет қаралды 1,9 М.
Когда вода попадает в нос при плавании
0:35
Silver Swim - Школа плавания
Рет қаралды 2,2 МЛН
他们在说什么,不能当面说。#海贼王#路飞
0:15
路飞与唐舞桐
Рет қаралды 7 МЛН
GUESS. What does he want?
0:32
dednahype
Рет қаралды 26 МЛН
Поел индийской еды...
0:15
Новостной Гусь
Рет қаралды 2,5 МЛН