<?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>npm &#8211; Noise</title>
	<atom:link href="https://noise.getoto.net/tag/npm/feed/" rel="self" type="application/rss+xml" />
	<link>https://noise.getoto.net</link>
	<description>The collective thoughts of the interwebz</description>
	<lastBuildDate>Tue, 29 Oct 2024 18:22:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>Using Semantic Versioning to Simplify Release Management</title>
		<link>https://noise.getoto.net/2024/10/29/using-semantic-versioning-to-simplify-release-management/</link>
		
		<dc:creator><![CDATA[Brandon Kindred]]></dc:creator>
		<pubDate>Tue, 29 Oct 2024 18:22:46 +0000</pubDate>
				<category><![CDATA[AWS CDK]]></category>
		<category><![CDATA[Best practices]]></category>
		<category><![CDATA[CDK]]></category>
		<category><![CDATA[CI/CD]]></category>
		<category><![CDATA[Continuous Integration]]></category>
		<category><![CDATA[devops]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Github]]></category>
		<category><![CDATA[GitHub Actions]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[Technical How-to]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://noise.getoto.net/?guid=480066f26a02cba4679d7a6898e2c168</guid>

					<description><![CDATA[Any organization that manages software libraries and applications needs a standardized way to catalog, reference, import, fix bugs and update the versions of those libraries and applications. Semantic Versioning enables developers, testers, and project managers to have a more standardized process for committing code and managing different versions. It’s benefits also extend beyond development teams […]]]></description>
		
		
		<enclosure url="" length="0" type="" />

			</item>
		<item>
		<title>Bringing npm registry services to GitHub Codespaces</title>
		<link>https://noise.getoto.net/2024/02/13/bringing-npm-registry-services-to-github-codespaces/</link>
		
		<dc:creator><![CDATA[Di Hei]]></dc:creator>
		<pubDate>Tue, 13 Feb 2024 18:00:19 +0000</pubDate>
				<category><![CDATA[Codespaces]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[productivity]]></category>
		<guid isPermaLink="false">https://github.blog/?p=76582</guid>

					<description><![CDATA[<p>The npm engineering team recently transitioned to using GitHub Codespaces for local development for npm registry services. This shift to Codespaces has substantially reduced the friction of our inner development loop and boosted developer productivity.</p>
<p>The post <a href="https://github.blog/2024-02-13-bringing-npm-registry-services-to-github-codespaces/">Bringing npm registry services to GitHub Codespaces</a> appeared first on <a href="https://github.blog/">The GitHub Blog</a>.</p>]]></description>
		
		
		<enclosure url="" length="0" type="" />

			</item>
		<item>
		<title>Unlocking security updates for transitive dependencies with npm</title>
		<link>https://noise.getoto.net/2023/01/19/unlocking-security-updates-for-transitive-dependencies-with-npm/</link>
		
		<dc:creator><![CDATA[Bryan Dragon]]></dc:creator>
		<pubDate>Thu, 19 Jan 2023 20:24:01 +0000</pubDate>
				<category><![CDATA[Dependabot]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Supply Chain Security]]></category>
		<guid isPermaLink="false">https://github.blog/?p=69619</guid>

					<description><![CDATA[How Dependabot integrated with npm to address security vulnerabilities on transitive dependencies and increase the likelihood of success for JavaScript security updates by 40%.]]></description>
		
		
		<enclosure url="" length="0" type="" />

			</item>
		<item>
		<title>Introducing even more security enhancements to npm</title>
		<link>https://noise.getoto.net/2022/07/26/introducing-even-more-security-enhancements-to-npm/</link>
		
		<dc:creator><![CDATA[Myles Borins]]></dc:creator>
		<pubDate>Tue, 26 Jul 2022 16:00:06 +0000</pubDate>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">https://github.blog/?p=66264</guid>

					<description><![CDATA[New npm security enhancements include an improved login and publish experience with the npm CLI, connected GitHub and Twitter accounts, and a new CLI command to verify the integrity of packages in npm.]]></description>
		
		
		<enclosure url="" length="0" type="" />

			</item>
		<item>
		<title>Publishing private npm packages with AWS CodeArtifact</title>
		<link>https://noise.getoto.net/2020/11/20/publishing-private-npm-packages-with-aws-codeartifact/</link>
		
		<dc:creator><![CDATA[Ryan Sonshine]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 20:29:43 +0000</pubDate>
				<category><![CDATA[AWS CodeArtifact]]></category>
		<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[Intermediate (200)]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[Technical How-to]]></category>
		<guid isPermaLink="false">http://noise.getoto.net/?guid=d74cdacad271cc67bff4b9b1cfb9b671</guid>

					<description><![CDATA[Learn how to create, publish, and download private npm packages using AWS CodeArtifact, allowing you to share code across your organization without exposing your packages to the public.]]></description>
		
		
		<enclosure url="" length="0" type="" />

			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 40/151 objects using Memcached
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching using Memcached

Served from: noise.getoto.net @ 2025-12-10 14:59:53 by W3 Total Cache
-->