<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: brianreinhold</title>
    <description>The latest articles on DEV Community by brianreinhold (@brianreinhold).</description>
    <link>https://dev.to/brianreinhold</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1057307%2F076142b2-edbb-4e60-909a-1656cb0e3a1a.png</url>
      <title>DEV Community: brianreinhold</title>
      <link>https://dev.to/brianreinhold</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/brianreinhold"/>
    <language>en</language>
    <item>
      <title>Any fortran out there?</title>
      <dc:creator>brianreinhold</dc:creator>
      <pubDate>Fri, 08 Aug 2025 16:24:32 +0000</pubDate>
      <link>https://dev.to/brianreinhold/any-fortran-out-there-3jh2</link>
      <guid>https://dev.to/brianreinhold/any-fortran-out-there-3jh2</guid>
      <description></description>
      <category>discuss</category>
    </item>
    <item>
      <title>ng new [project name] generates no polyfills.ts file</title>
      <dc:creator>brianreinhold</dc:creator>
      <pubDate>Wed, 03 May 2023 10:38:10 +0000</pubDate>
      <link>https://dev.to/brianreinhold/ng-new-project-name-generates-no-polyfillsts-file-2lio</link>
      <guid>https://dev.to/brianreinhold/ng-new-project-name-generates-no-polyfillsts-file-2lio</guid>
      <description>&lt;p&gt;I have created a few new angular projects using ng new. No polyfills.ts file is created. I have read that angular-cli supports polyfills so I assumed the file would be created.&lt;/p&gt;

&lt;p&gt;Where do I get this file if ng new does not create it?&lt;/p&gt;

</description>
      <category>angular</category>
      <category>typescript</category>
    </item>
    <item>
      <title>Angular Update Guide does not work</title>
      <dc:creator>brianreinhold</dc:creator>
      <pubDate>Thu, 06 Apr 2023 14:42:18 +0000</pubDate>
      <link>https://dev.to/brianreinhold/angular-update-guide-does-not-work-4lch</link>
      <guid>https://dev.to/brianreinhold/angular-update-guide-does-not-work-4lch</guid>
      <description>&lt;p&gt;I am trying to update my angular project from 7 to 8 (eventually I want to update to the latest). Following the Angular Update Guide here &lt;a href="https://update.angular.io/?v=7.2-8.2"&gt;https://update.angular.io/?v=7.2-8.2&lt;/a&gt; gives the following error after invoking the first command instruction cmd /C "set "NG_DISABLE_VERSION_CHECK=1" &amp;amp;&amp;amp; npx @angular/cli@8 update @angular/cli@8 @angular/core@8"&lt;/p&gt;

&lt;p&gt;npm ERR! code EBADPLATFORM&lt;br&gt;
npm ERR! notsup Unsupported platform for &lt;a href="mailto:fsevents@2.3.2"&gt;fsevents@2.3.2&lt;/a&gt;: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})&lt;br&gt;
npm ERR! notsup Valid OS:    darwin&lt;br&gt;
npm ERR! notsup Valid Arch:  any&lt;br&gt;
npm ERR! notsup Actual OS:   win32&lt;br&gt;
npm ERR! notsup Actual Arch: x64&lt;/p&gt;

&lt;p&gt;and quits.&lt;/p&gt;

&lt;p&gt;My package.json file is updated but package-lock.json is not. There is no help in the instructions about what to do when things go wrong. I have tried different variants and there are always conflicts - not in the code but the node-modules dependencies; usually conflicting angular dependencies.&lt;/p&gt;

&lt;p&gt;How does one actually do this? Any help would be greatly appreciated!&lt;/p&gt;

</description>
      <category>angular</category>
    </item>
    <item>
      <title>npm install fails, ng serve works</title>
      <dc:creator>brianreinhold</dc:creator>
      <pubDate>Sun, 02 Apr 2023 13:31:21 +0000</pubDate>
      <link>https://dev.to/brianreinhold/npm-install-fails-ng-serve-works-19e2</link>
      <guid>https://dev.to/brianreinhold/npm-install-fails-ng-serve-works-19e2</guid>
      <description>&lt;p&gt;I have been tasked with fixing and updating a complex Angular Cli project that is basically ancient. Everything for me is new here; javascript, typescript, node JS (npm), and of course, Angular itself.&lt;br&gt;
After a week or two I have obtained some familiarity thanks to many excellent tutorial videos on You Tube.&lt;/p&gt;

&lt;p&gt;But I have come across a perplexing problem I do not understand and cannot fix. I have the following for versions:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Angular CLI: 14.2.0
Node: 14.18.1
Package Manager: npm 6.14.18
OS: win32 x64

Angular: 7.2.16
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router

Package                         Version
---------------------------------------------------------
@angular-devkit/architect       0.10.7
@angular-devkit/build-angular   0.10.7
@angular-devkit/core            0.3.2
@angular-devkit/schematics      14.2.0
@angular/cdk                    7.3.7
@angular/cli                    14.2.0
@angular/flex-layout            7.0.0-beta.19
@angular/material               7.3.7
@schematics/angular             14.2.0
rxjs                            6.5.5
typescript                      3.1.6
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When I run &lt;code&gt;npm install&lt;/code&gt; I get the following errors:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;gyp ERR! UNCAUGHT EXCEPTION
gyp ERR! stack Error: spawn C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\15.0\Bin\MSBuild.exe ENOENT
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:274:19)
gyp ERR! stack     at onErrorNT (internal/child_process.js:469:16)
gyp ERR! stack     at processTicksAndRejections (internal/process/task_queues.js:82:21)
gyp ERR! System Windows_NT 10.0.19045
gyp ERR! command "C:\\Users\\brian\\AppData\\Local\\nvs\\node\\14.18.1\\x64\\node.exe" "E:\\projects\\exchangex\\node_modules\\@angular-devkit\\build-angular\\node_modules\\node-gyp\\bin\\node-gyp
.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd E:\projects\exchangex\node_modules\@angular-devkit\build-angular\node_modules\node-sass
gyp ERR! node -v v14.18.1
gyp ERR! node-gyp -v v3.8.0
gyp ERR! This is a bug in `node-gyp`.
gyp ERR! Try to update node-gyp and file an Issue if it does not help:
gyp ERR!     &amp;lt;https://github.com/nodejs/node-gyp/issues&amp;gt;
Build failed with error code: 7
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;However, &lt;code&gt;ng serve&lt;/code&gt; works!&lt;/p&gt;

&lt;p&gt;I spent a week trying to get another version of node-gyp to be used, always failing and never tried &lt;code&gt;ng serve&lt;/code&gt; because I assumed it would not work.&lt;/p&gt;

&lt;p&gt;The goal is to update this project to the current versions of Angular cli / nodeJs but I am at a loss to understand the failure of 'npm install' and the success of 'ng serve'&lt;/p&gt;

&lt;p&gt;What am I missing?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>node</category>
      <category>angular</category>
    </item>
  </channel>
</rss>
