<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JavaScript Archives - Timo Ernst</title>
	<atom:link href="https://www.timo-ernst.net/blog/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.timo-ernst.net/blog/tag/javascript/</link>
	<description>Developer • YouTuber • Blogger</description>
	<lastBuildDate>Wed, 05 May 2021 18:20:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.timo-ernst.net/wp-content/uploads/2021/03/cropped-Timo-Ernst-Small-32x32.jpg</url>
	<title>JavaScript Archives - Timo Ernst</title>
	<link>https://www.timo-ernst.net/blog/tag/javascript/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Parallax Beginner Tutorial: A Cool 3D Effect With HTML, CSS, JavaScript</title>
		<link>https://www.timo-ernst.net/blog/2021/05/05/parallax-beginner-tutorial-a-cool-3d-effect-with-html-css-javascript/</link>
					<comments>https://www.timo-ernst.net/blog/2021/05/05/parallax-beginner-tutorial-a-cool-3d-effect-with-html-css-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Wed, 05 May 2021 18:11:17 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[parallax]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4546</guid>

					<description><![CDATA[<p>I found this great Photoshop tutorial by Dev Ed which inspired me to create my own implementation of a parallax effect based on his video in order to create more depth to websites and hey – a bit of eye candy never hearts, right? :-) So, here is my implementation below. As you can see [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2021/05/05/parallax-beginner-tutorial-a-cool-3d-effect-with-html-css-javascript/">Parallax Beginner Tutorial: A Cool 3D Effect With HTML, CSS, JavaScript</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2019/01/03/build-the-snake-game-for-browsers-with-html-and-javascript-tutorial/" rel="bookmark" title="Build the Snake Game for Browsers with HTML and JavaScript Tutorial">Build the Snake Game for Browsers with HTML and JavaScript Tutorial</a></li>
<li><a href="https://www.timo-ernst.net/blog/2020/07/12/swiperjs-react-video-tutorial-2020/" rel="bookmark" title="SwiperJS React Video Tutorial | 2020">SwiperJS React Video Tutorial | 2020</a></li>
<li><a href="https://www.timo-ernst.net/blog/2017/01/09/tutorial-create-a-twitter-app-with-vuejs-framework7-phonegap-and-webpack-episode-01/" rel="bookmark" title="Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap">Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2021/05/05/parallax-beginner-tutorial-a-cool-3d-effect-with-html-css-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Prettier Autoformat for TypeScript not Working</title>
		<link>https://www.timo-ernst.net/blog/2020/10/09/prettier-autoformat-for-typescript-not-working/</link>
					<comments>https://www.timo-ernst.net/blog/2020/10/09/prettier-autoformat-for-typescript-not-working/#comments</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Fri, 09 Oct 2020 12:57:58 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[typescript]]></category>
		<category><![CDATA[vscode]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4251</guid>

					<description><![CDATA[<p>For me Prettier has been doing an awesome job when auto-formatting JavaScript code on save. However, when using TypeScript files (.tsx) it didn&#8217;t work. Here is how to fix it: First, press shift + cmd + p (Mac), enter &#8220;settings&#8221; and choose &#8220;Preferences: Open Settings (JSON)&#8221;. Then add the following: "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2020/10/09/prettier-autoformat-for-typescript-not-working/">Prettier Autoformat for TypeScript not Working</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2015/04/02/experiment-an-iphone-app-built-with-framework7-typescript-and-angularjs/" rel="bookmark" title="Experiment: An iPhone app built with Framework7, TypeScript, and Angular 1.x">Experiment: An iPhone app built with Framework7, TypeScript, and Angular 1.x</a></li>
<li><a href="https://www.timo-ernst.net/blog/2015/04/01/framework7-template-with-typescript-and-angularjs/" rel="bookmark" title="Framework7 template with TypeScript and AngularJS">Framework7 template with TypeScript and AngularJS</a></li>
<li><a href="https://www.timo-ernst.net/blog/2011/06/08/remove-and-contains-not-working-on-your-java-set/" rel="bookmark" title=".remove() and .contains() not working on your Java set?">.remove() and .contains() not working on your Java set?</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2020/10/09/prettier-autoformat-for-typescript-not-working/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>SwiperJS React Video Tutorial &#124; 2020</title>
		<link>https://www.timo-ernst.net/blog/2020/07/12/swiperjs-react-video-tutorial-2020/</link>
					<comments>https://www.timo-ernst.net/blog/2020/07/12/swiperjs-react-video-tutorial-2020/#comments</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Sun, 12 Jul 2020 19:42:03 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[react]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[swiper]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4209</guid>

					<description><![CDATA[<p>After many years of being tied to 3rd party React versions of SwiperJS the official team has now created its own version of SwiperJS for React. In this tutorial I will explain how to use it. Find source code here:https://github.com/valnub/swiper-react-demo Follow me on Twitter:https://www.twitter.com/timo_ernst</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2020/07/12/swiperjs-react-video-tutorial-2020/">SwiperJS React Video Tutorial | 2020</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2020/09/12/arrows-in-react-swiper-js-how-to-customize-prev-next-button/" rel="bookmark" title="Arrows in React Swiper Js: How to Customize Prev/Next Button">Arrows in React Swiper Js: How to Customize Prev/Next Button</a></li>
<li><a href="https://www.timo-ernst.net/blog/2020/08/15/how-to-set-responsive-breakpoints-in-swiper-react/" rel="bookmark" title="How to Set Responsive Breakpoints in Swiper React">How to Set Responsive Breakpoints in Swiper React</a></li>
<li><a href="https://www.timo-ernst.net/blog/2018/11/02/tutorial-auto-complete-search-with-react-node-and-framework7/" rel="bookmark" title="Tutorial: Auto-Complete Search with React, Node and Framework7">Tutorial: Auto-Complete Search with React, Node and Framework7</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2020/07/12/swiperjs-react-video-tutorial-2020/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>What&#8217;s All The Buzz About SvelteJS?</title>
		<link>https://www.timo-ernst.net/blog/2019/06/25/whats-all-the-buzz-about-sveltejs/</link>
					<comments>https://www.timo-ernst.net/blog/2019/06/25/whats-all-the-buzz-about-sveltejs/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Tue, 25 Jun 2019 05:19:00 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[sveltejs]]></category>
		<category><![CDATA[webdev]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4171</guid>

					<description><![CDATA[<p>I noticed a lot of tweets lately regarding SvelteJS, so I thought – why not check it out and see what all the buzz is about? In this video I&#8217;ll go through the fundamentals of the framework and also show a simple live coding example using it. What is your take on Svelte? Would you [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2019/06/25/whats-all-the-buzz-about-sveltejs/">What&#8217;s All The Buzz About SvelteJS?</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2017/01/09/tutorial-create-a-twitter-app-with-vuejs-framework7-phonegap-and-webpack-episode-01/" rel="bookmark" title="Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap">Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap</a></li>
<li><a href="https://www.timo-ernst.net/blog/2016/11/13/how-to-get-started-with-framework7-vuejs-and-webpack/" rel="bookmark" title="How to get started with Framework7, VueJS and Webpack">How to get started with Framework7, VueJS and Webpack</a></li>
<li><a href="https://www.timo-ernst.net/blog/2019/01/03/build-the-snake-game-for-browsers-with-html-and-javascript-tutorial/" rel="bookmark" title="Build the Snake Game for Browsers with HTML and JavaScript Tutorial">Build the Snake Game for Browsers with HTML and JavaScript Tutorial</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2019/06/25/whats-all-the-buzz-about-sveltejs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Build the Snake Game for Browsers with HTML and JavaScript Tutorial</title>
		<link>https://www.timo-ernst.net/blog/2019/01/03/build-the-snake-game-for-browsers-with-html-and-javascript-tutorial/</link>
					<comments>https://www.timo-ernst.net/blog/2019/01/03/build-the-snake-game-for-browsers-with-html-and-javascript-tutorial/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Thu, 03 Jan 2019 10:38:37 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[snake]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4148</guid>

					<description><![CDATA[<p>Happy new year everyone! This tutorial is based on the previous Canvas Particle Animation tutorial and introduces simple gaming mechanics by showing how to create Snake for browsers. Enjoy! :-) Source code: https://github.com/valnub/snake</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2019/01/03/build-the-snake-game-for-browsers-with-html-and-javascript-tutorial/">Build the Snake Game for Browsers with HTML and JavaScript Tutorial</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2015/03/26/hcal-an-ios-inspired-html-based-calendar/" rel="bookmark" title="hcal: An iOS inspired HTML-based calendar">hcal: An iOS inspired HTML-based calendar</a></li>
<li><a href="https://www.timo-ernst.net/blog/2018/12/05/build-a-calendar-in-5-mins-with-html-and-framework7-video-tutorial/" rel="bookmark" title="Build a Calendar in 5 mins with HTML and Framework7 | Video Tutorial">Build a Calendar in 5 mins with HTML and Framework7 | Video Tutorial</a></li>
<li><a href="https://www.timo-ernst.net/blog/2017/05/04/es6-modules-ready-browsers/" rel="bookmark" title="Are ES6 modules ready for browsers?">Are ES6 modules ready for browsers?</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2019/01/03/build-the-snake-game-for-browsers-with-html-and-javascript-tutorial/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Particle animation with HTML5 Canvas and JavaScript Tutorial</title>
		<link>https://www.timo-ernst.net/blog/2018/11/05/particle-animation-with-html5-canvas-javascript-tutorial/</link>
					<comments>https://www.timo-ernst.net/blog/2018/11/05/particle-animation-with-html5-canvas-javascript-tutorial/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Mon, 05 Nov 2018 18:59:06 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[particle]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4130</guid>

					<description><![CDATA[<p>In this video I&#8217;ll show you how to create something like this: Source code available on GitHub: https://github.com/valnub/particle-animation-javascript</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2018/11/05/particle-animation-with-html5-canvas-javascript-tutorial/">Particle animation with HTML5 Canvas and JavaScript Tutorial</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2019/01/03/build-the-snake-game-for-browsers-with-html-and-javascript-tutorial/" rel="bookmark" title="Build the Snake Game for Browsers with HTML and JavaScript Tutorial">Build the Snake Game for Browsers with HTML and JavaScript Tutorial</a></li>
<li><a href="https://www.timo-ernst.net/blog/2021/12/19/create-appletv-ui-animation-with-atroposjs-html-css-javascript-tutorial/" rel="bookmark" title="Create AppleTV UI Animation with AtroposJS | HTML CSS JavaScript Tutorial">Create AppleTV UI Animation with AtroposJS | HTML CSS JavaScript Tutorial</a></li>
<li><a href="https://www.timo-ernst.net/blog/2017/01/09/tutorial-create-a-twitter-app-with-vuejs-framework7-phonegap-and-webpack-episode-01/" rel="bookmark" title="Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap">Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2018/11/05/particle-animation-with-html5-canvas-javascript-tutorial/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Tutorial: Auto-Complete Search with React, Node and Framework7</title>
		<link>https://www.timo-ernst.net/blog/2018/11/02/tutorial-auto-complete-search-with-react-node-and-framework7/</link>
					<comments>https://www.timo-ernst.net/blog/2018/11/02/tutorial-auto-complete-search-with-react-node-and-framework7/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Fri, 02 Nov 2018 22:48:21 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[framework7]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[node]]></category>
		<category><![CDATA[react]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4126</guid>

					<description><![CDATA[<p>In this tutorial I will explain how you can easily use Framework7&#8217;s autocomplete feature for search input fields using React and web services with Node.js Source code on GitHub: https://github.com/valnub/f7-node-autocomplete-search-demo</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2018/11/02/tutorial-auto-complete-search-with-react-node-and-framework7/">Tutorial: Auto-Complete Search with React, Node and Framework7</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2020/09/12/arrows-in-react-swiper-js-how-to-customize-prev-next-button/" rel="bookmark" title="Arrows in React Swiper Js: How to Customize Prev/Next Button">Arrows in React Swiper Js: How to Customize Prev/Next Button</a></li>
<li><a href="https://www.timo-ernst.net/blog/2020/07/12/swiperjs-react-video-tutorial-2020/" rel="bookmark" title="SwiperJS React Video Tutorial | 2020">SwiperJS React Video Tutorial | 2020</a></li>
<li><a href="https://www.timo-ernst.net/blog/2018/04/11/how-to-use-framework7-v2-router-tutorial/" rel="bookmark" title="How to use Framework7 V2 Router Tutorial">How to use Framework7 V2 Router Tutorial</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2018/11/02/tutorial-auto-complete-search-with-react-node-and-framework7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to use Framework7 V2 Router Tutorial</title>
		<link>https://www.timo-ernst.net/blog/2018/04/11/how-to-use-framework7-v2-router-tutorial/</link>
					<comments>https://www.timo-ernst.net/blog/2018/04/11/how-to-use-framework7-v2-router-tutorial/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Wed, 11 Apr 2018 17:52:40 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[cordova]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ecmascript]]></category>
		<category><![CDATA[framework7]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[phonegap]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[video]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=4015</guid>

					<description><![CDATA[<p>I&#8217;ve been getting a lot of requests on how to use the new V2 Router of Framework7, so here are two episodes covering the absolute basics of routing in F7. Have fun, enjoy and let me know if anything is unclear or you want other specific topics covered. Video playlist: Episode 1: Basics Episode 2: [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2018/04/11/how-to-use-framework7-v2-router-tutorial/">How to use Framework7 V2 Router Tutorial</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2017/01/09/tutorial-create-a-twitter-app-with-vuejs-framework7-phonegap-and-webpack-episode-01/" rel="bookmark" title="Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap">Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap</a></li>
<li><a href="https://www.timo-ernst.net/blog/2018/11/02/tutorial-auto-complete-search-with-react-node-and-framework7/" rel="bookmark" title="Tutorial: Auto-Complete Search with React, Node and Framework7">Tutorial: Auto-Complete Search with React, Node and Framework7</a></li>
<li><a href="https://www.timo-ernst.net/blog/2017/08/10/what-is-vuex/" rel="bookmark" title="What is Vuex?">What is Vuex?</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2018/04/11/how-to-use-framework7-v2-router-tutorial/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Find Dead CSS in React using Radium</title>
		<link>https://www.timo-ernst.net/blog/2018/01/21/find-dead-css-in-react-using-radium/</link>
					<comments>https://www.timo-ernst.net/blog/2018/01/21/find-dead-css-in-react-using-radium/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Sun, 21 Jan 2018 18:04:51 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[es6]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[react]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=3984</guid>

					<description><![CDATA[<p>When a project grows it often gets harder to find out which css styles are still required and which can be removed. There are post-processors which analyse your bundle and can remove code that it thinks can be deleted, but this is just the same as treating the symptom instead of curing the disease. In [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2018/01/21/find-dead-css-in-react-using-radium/">Find Dead CSS in React using Radium</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2018/11/02/tutorial-auto-complete-search-with-react-node-and-framework7/" rel="bookmark" title="Tutorial: Auto-Complete Search with React, Node and Framework7">Tutorial: Auto-Complete Search with React, Node and Framework7</a></li>
<li><a href="https://www.timo-ernst.net/blog/2020/07/12/swiperjs-react-video-tutorial-2020/" rel="bookmark" title="SwiperJS React Video Tutorial | 2020">SwiperJS React Video Tutorial | 2020</a></li>
<li><a href="https://www.timo-ernst.net/blog/2020/09/12/arrows-in-react-swiper-js-how-to-customize-prev-next-button/" rel="bookmark" title="Arrows in React Swiper Js: How to Customize Prev/Next Button">Arrows in React Swiper Js: How to Customize Prev/Next Button</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2018/01/21/find-dead-css-in-react-using-radium/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is Vuex?</title>
		<link>https://www.timo-ernst.net/blog/2017/08/10/what-is-vuex/</link>
					<comments>https://www.timo-ernst.net/blog/2017/08/10/what-is-vuex/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Thu, 10 Aug 2017 21:39:01 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[vue.js]]></category>
		<category><![CDATA[vuex]]></category>
		<guid isPermaLink="false">https://www.timo-ernst.net/?p=3929</guid>

					<description><![CDATA[<p>This is a new video on my ongoing Vuex series on YouTube explaining the core concepts. I know, I know, I already posted two videos about Vuex before but I felt like I dove a little but to fast into the code and kinda missed to explain the basics about the framework. So, here is [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2017/08/10/what-is-vuex/">What is Vuex?</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2017/01/15/log-twitter-api-using-oauth-create-twitter-app-vuejs-framework7-episode-02/" rel="bookmark" title="How to log in to Twitter API using oauth">How to log in to Twitter API using oauth</a></li>
<li><a href="https://www.timo-ernst.net/blog/2017/01/09/tutorial-create-a-twitter-app-with-vuejs-framework7-phonegap-and-webpack-episode-01/" rel="bookmark" title="Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap">Tutorial: Create a Twitter app with Vue.js, Framework7 and PhoneGap</a></li>
<li><a href="https://www.timo-ernst.net/blog/2017/01/30/port-a-vue-js-webapp-to-phonegap-tutorial/" rel="bookmark" title="Port a Vue.js webapp to PhoneGap tutorial">Port a Vue.js webapp to PhoneGap tutorial</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2017/08/10/what-is-vuex/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
