<?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>snippet Archives - Creatronix</title>
	<atom:link href="https://creatronix.de/tag/snippet/feed/" rel="self" type="application/rss+xml" />
	<link>https://creatronix.de/tag/snippet/</link>
	<description>My adventures in code &#38; business</description>
	<lastBuildDate>Thu, 09 Oct 2025 14:34:48 +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>
	<item>
		<title>JavaScript modules</title>
		<link>https://creatronix.de/javascript-modules/</link>
		
		<dc:creator><![CDATA[Jörn]]></dc:creator>
		<pubDate>Tue, 12 May 2020 09:07:31 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[snippet]]></category>
		<guid isPermaLink="false">http://creatronix.de/?p=3265</guid>

					<description><![CDATA[<p>&#60;head&#62; &#60;script src="../js/constants.js" type="module"&#62;&#60;/script&#62; &#60;script src="../js/script.js" type="module"&#62;&#60;/script&#62; &#60;/head&#62; constants.js export const projects = [ "Project-A", "Project-B", "Project-C", ]; script.js import {projects} from "./constants.js";</p>
<p>The post <a href="https://creatronix.de/javascript-modules/">JavaScript modules</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></description>
										<content:encoded><![CDATA[<pre>&lt;head&gt;
    &lt;script src="../js/constants.js" <strong>type="module"</strong>&gt;&lt;/script&gt;
    &lt;script src="../js/script.js" <strong>type="module"</strong>&gt;&lt;/script&gt;
&lt;/head&gt;</pre>
<p>constants.js</p>
<pre>export const projects = [
  "Project-A",
  "Project-B",
  "Project-C",
];</pre>
<p>script.js</p>
<pre>import {projects} from "./constants.js";</pre>
<p>The post <a href="https://creatronix.de/javascript-modules/">JavaScript modules</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
