<?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: Motouom Victor</title>
    <description>The latest articles on DEV Community by Motouom Victor (@motouom_victor).</description>
    <link>https://dev.to/motouom_victor</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%2F1834621%2Fe49cf45d-d085-44d2-9f87-4a11988c5ab3.png</url>
      <title>DEV Community: Motouom Victor</title>
      <link>https://dev.to/motouom_victor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/motouom_victor"/>
    <language>en</language>
    <item>
      <title>apt error: unable to use apt on ubuntu.</title>
      <dc:creator>Motouom Victor</dc:creator>
      <pubDate>Fri, 09 Aug 2024 08:15:45 +0000</pubDate>
      <link>https://dev.to/motouom_victor/apt-error-unable-to-use-apt-on-ubuntu-3i4p</link>
      <guid>https://dev.to/motouom_victor/apt-error-unable-to-use-apt-on-ubuntu-3i4p</guid>
      <description>&lt;p&gt;&lt;strong&gt;You get an error like this or similar to this when you run any apt command.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;E: Conflicting values &lt;span class="nb"&gt;set &lt;/span&gt;&lt;span class="k"&gt;for &lt;/span&gt;option Signed-By regarding &lt;span class="nb"&gt;source &lt;/span&gt;https://apt.postgresql.org/pub/repos/apt/ noble-pgdg: /usr/share/postgresql-common/pgdg/apt.postgresql.org.asc &lt;span class="o"&gt;!=&lt;/span&gt; /usr/share/postgresql-common/pgdg/apt.postgresql.org.gpg
E: The list of sources could not be read.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;- What is the error message telling us?&lt;/strong&gt;&lt;br&gt;
The error message indicates a conflict with the Signed-By option regarding the source &lt;a href="https://apt.postgresql.org/pub/repos/apt/" rel="noopener noreferrer"&gt;https://apt.postgresql.org/pub/repos/apt/&lt;/a&gt;. Specifically, it states that the GPG key used to sign the repository (/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc) is different from the one it expects (/usr/share/postgresql-common/pgdg/apt.postgresql.org.gpg).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- This could be due to a few possible reasons:&lt;/strong&gt;&lt;br&gt;
The GPG key used to sign the PostgreSQL repository has been changed or updated, but the system's configuration has not been updated accordingly.&lt;br&gt;
There is a conflict or issue with the system's package management configuration, potentially caused by other repositories or packages.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Here is how to go about it. There are several ways to fix it, but I'll give the one that best works for me and is always sure to work.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Steps&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;-  cd into the **sources.list.d&lt;/strong&gt; directory.**&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; /etc/apt/sources.list.d
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;- list all the files found in the directory&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;ls&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;alexlarsson-ubuntu-flatpak-noble.sources
archive_uri-https_packages_microsoft_com_repos_vscode-noble.list
flatpak-ubuntu-stable-noble.sources
google-chrome.list
hashicorp.list
pgdg.list
pgdg.sources
touchegg-ubuntu-stable-noble.sources
ubuntu-esm-apps.sources
ubuntu-esm-infra.sources
ubuntu.sources
ubuntu.sources.curtin.orig
vscode.list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; The list of the files will vary depending on what causes your error to appear. You then need to open the files and delete any file that has to do with gpg. In my case, it was the &lt;strong&gt;PostgreSQL files&lt;/strong&gt; that were causing those errors&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- cat the files one after another if you do not know which one to look into in my case I had to delete any file that has to do with gpg in the sources.list.d directory.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cat &lt;/span&gt;pgdg.sources 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;result&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Types: deb
URIs: https://apt.postgresql.org/pub/repos/apt
Suites: noble-pgdg
Components: main
Signed-By: /usr/share/postgresql-common/pgdg/apt.postgresql.org.gpg
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo rm &lt;/span&gt;pgdg.sources 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cat &lt;/span&gt;pgdg.list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;result&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;deb &lt;span class="o"&gt;[&lt;/span&gt;signed-by&lt;span class="o"&gt;=&lt;/span&gt;/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt noble-pgdg main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt; &lt;span class="nb"&gt;sudo rm &lt;/span&gt;pgdg.list 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;- After removing all the files, you can now try running the update command or any apt command again.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;apt update
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;result&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Hit:1 http://security.ubuntu.com/ubuntu noble-security InRelease
Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease         
Hit:3 https://apt.releases.hashicorp.com noble InRelease       
Hit:4 https://dl.google.com/linux/chrome/deb stable InRelease  
Hit:5 https://esm.ubuntu.com/apps/ubuntu noble-apps-security InRelease
Hit:6 http://archive.ubuntu.com/ubuntu noble-updates InRelease 
Hit:7 https://packages.cloud.google.com/apt cloud-sdk InRelease
Ign:8 https://ppa.launchpadcontent.net/alexlarsson/flatpak/ubuntu noble InRelease
Hit:9 https://esm.ubuntu.com/apps/ubuntu noble-apps-updates InRelease
Hit:10 https://ppa.launchpadcontent.net/flatpak/stable/ubuntu noble InRelease
Hit:11 http://archive.ubuntu.com/ubuntu noble-backports InRelease
Hit:12 https://packages.microsoft.com/repos/vscode stable InRelease
Hit:13 https://esm.ubuntu.com/infra/ubuntu noble-infra-security InRelease
Hit:14 https://ppa.launchpadcontent.net/touchegg/stable/ubuntu noble InRelease
Hit:15 https://packages.microsoft.com/repos/code stable InRelease
Hit:16 https://esm.ubuntu.com/infra/ubuntu noble-infra-updates InRelease
Err:17 https://ppa.launchpadcontent.net/alexlarsson/flatpak/ubuntu noble Release
  404  Not Found &lt;span class="o"&gt;[&lt;/span&gt;IP: 185.125.190.80 443]
Reading package lists... Done
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ubuntu</category>
      <category>cli</category>
      <category>apt</category>
    </item>
    <item>
      <title>Burn ISO to USB on Mac all versions - ALWAYS WORKS</title>
      <dc:creator>Motouom Victor</dc:creator>
      <pubDate>Thu, 01 Aug 2024 10:17:41 +0000</pubDate>
      <link>https://dev.to/motouom_victor/burn-iso-to-usb-on-mac-all-versions-always-works-hdj</link>
      <guid>https://dev.to/motouom_victor/burn-iso-to-usb-on-mac-all-versions-always-works-hdj</guid>
      <description>&lt;p&gt;On Mac, it is not possible to download and install power iso and burn images so to do this easily, we can do it on the terminal which is faster, easier, and convenient.&lt;br&gt;
Below are the steps that you need to follow to accomplish this.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Before plugging in the drive, you need to see the available ones on the device first. To do that, run the command&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt; diskutil list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you should have an output that resembles this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;❯ diskutil list
/dev/disk0 &lt;span class="o"&gt;(&lt;/span&gt;internal, physical&lt;span class="o"&gt;)&lt;/span&gt;:
   &lt;span class="c"&gt;#:                       TYPE NAME                    SIZE       IDENTIFIER&lt;/span&gt;
   0:      GUID_partition_scheme                        &lt;span class="k"&gt;*&lt;/span&gt;500.3 GB   disk0
   1:                        EFI EFI                     209.7 MB   disk0s1
   2:                 Apple_APFS Container disk1         500.1 GB   disk0s2

/dev/disk1 &lt;span class="o"&gt;(&lt;/span&gt;synthesized&lt;span class="o"&gt;)&lt;/span&gt;:
   &lt;span class="c"&gt;#:                       TYPE NAME                    SIZE       IDENTIFIER&lt;/span&gt;
   0:      APFS Container Scheme -                      +500.1 GB   disk1
                                 Physical Store disk0s2
   1:                APFS Volume APPLE SSD SM0512G Me... 170.9 GB   disk1s1
   2:                APFS Volume Preboot                 447.3 MB   disk1s2
   3:                APFS Volume Recovery                1.1 GB     disk1s3
   4:                APFS Volume VM                      2.1 GB     disk1s4
   5:                APFS Volume APPLE SSD SM0512G Media 15.4 GB    disk1s5
   6:              APFS Snapshot com.apple.os.update-... 15.4 GB    disk1s5s1

/dev/disk3 &lt;span class="o"&gt;(&lt;/span&gt;disk image&lt;span class="o"&gt;)&lt;/span&gt;:
   &lt;span class="c"&gt;#:                       TYPE NAME                    SIZE       IDENTIFIER&lt;/span&gt;
   0:      GUID_partition_scheme                        +6.1 GB     disk3
   1:       Microsoft Basic Data                         6.1 GB     disk3s1
   2:                        EFI ESP                     5.2 MB     disk3s2
   3:       Microsoft Basic Data                         307.2 KB   disk3s3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Insert the drive and run the command again.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;❯ diskutil list
/dev/disk0 &lt;span class="o"&gt;(&lt;/span&gt;internal, physical&lt;span class="o"&gt;)&lt;/span&gt;:
   &lt;span class="c"&gt;#:                       TYPE NAME                    SIZE       IDENTIFIER&lt;/span&gt;
   0:      GUID_partition_scheme                        &lt;span class="k"&gt;*&lt;/span&gt;500.3 GB   disk0
   1:                        EFI EFI                     209.7 MB   disk0s1
   2:                 Apple_APFS Container disk1         500.1 GB   disk0s2

/dev/disk1 &lt;span class="o"&gt;(&lt;/span&gt;synthesized&lt;span class="o"&gt;)&lt;/span&gt;:
   &lt;span class="c"&gt;#:                       TYPE NAME                    SIZE       IDENTIFIER&lt;/span&gt;
   0:      APFS Container Scheme -                      +500.1 GB   disk1
                                 Physical Store disk0s2
   1:                APFS Volume APPLE SSD SM0512G Me... 170.9 GB   disk1s1
   2:                APFS Volume Preboot                 447.3 MB   disk1s2
   3:                APFS Volume Recovery                1.1 GB     disk1s3
   4:                APFS Volume VM                      2.1 GB     disk1s4
   5:                APFS Volume APPLE SSD SM0512G Media 15.4 GB    disk1s5
   6:              APFS Snapshot com.apple.os.update-... 15.4 GB    disk1s5s1

_&lt;span class="k"&gt;**&lt;/span&gt;/dev/disk2 &lt;span class="o"&gt;(&lt;/span&gt;external, physical&lt;span class="o"&gt;)&lt;/span&gt;:
   &lt;span class="c"&gt;#:                       TYPE NAME                    SIZE       IDENTIFIER&lt;/span&gt;
   0:      GUID_partition_scheme                        &lt;span class="k"&gt;*&lt;/span&gt;61.9 GB    disk2
   1:                        EFI EFI                     209.7 MB   disk2s1
   2:       Microsoft Basic Data Untitled                61.7 GB    disk2s2&lt;span class="k"&gt;**&lt;/span&gt;_

/dev/disk3 &lt;span class="o"&gt;(&lt;/span&gt;disk image&lt;span class="o"&gt;)&lt;/span&gt;:
   &lt;span class="c"&gt;#:                       TYPE NAME                    SIZE       IDENTIFIER&lt;/span&gt;
   0:      GUID_partition_scheme                        +6.1 GB     disk3
   1:       Microsoft Basic Data                         6.1 GB     disk3s1
   2:                        EFI ESP                     5.2 MB     disk3s2
   3:       Microsoft Basic Data                         307.2 KB   disk3s3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will notice that there is an additional disk on the list of disk. Take note of the drive since you will use it in the process. For me, the drive is &lt;strong&gt;/dev/disk2&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. unmount the disk to begin the process. For this, you have various commands and can try any of them if the others give you an error like&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;zsh: &lt;span class="nb"&gt;command &lt;/span&gt;not found: unmount
zsh: &lt;span class="nb"&gt;command &lt;/span&gt;not found: unmountDisk
or a similar error
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;a.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;unmount /dev/disk2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;b.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;unmountDisk /dev/disk2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;c.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt; diskutil unmountDisk /dev/disk2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;4. After unmounting the drive, you now burn the iso file into the drive using the command&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo dd &lt;/span&gt;&lt;span class="nv"&gt;bs&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1m &lt;span class="k"&gt;if&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;~/Users/gis/Downloads/ubuntu-24.04-desktop-amd64.iso &lt;span class="nv"&gt;of&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;/dev/rdisk2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;NB: ~/Users/gis/Downloads/ubuntu-24.04-desktop-amd64.iso is the path to the image you wish to burn and /dev/rdisk2 is the drive in which you are burning it into&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;after running the above command, you wait for about 5 - 10 minutes then you will see a message like&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;5831+1 records &lt;span class="k"&gt;in
&lt;/span&gt;5831+1 records out
6114656256 bytes transferred &lt;span class="k"&gt;in &lt;/span&gt;579.370318 secs &lt;span class="o"&gt;(&lt;/span&gt;10553969 bytes/sec&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;5. After completion, run the command&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;diskutil eject /dev/disk2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will eject the drive from your machine. remove the drive and then insert it again.&lt;/p&gt;

&lt;p&gt;And there we go, you now have a flash drive burnt in a mac device.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>npm run dev gives an error.</title>
      <dc:creator>Motouom Victor</dc:creator>
      <pubDate>Sat, 27 Jul 2024 09:27:03 +0000</pubDate>
      <link>https://dev.to/motouom_victor/npm-run-dev-gives-an-error-3k42</link>
      <guid>https://dev.to/motouom_victor/npm-run-dev-gives-an-error-3k42</guid>
      <description>&lt;p&gt;We often encounter the error below when trying to start our react app.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;
packit-frontend@0.0.0 dev
vite

file:///home/ariel/Desktop/PackIt/PackIt-frontend/node_modules/vite/bin/vite.js:7
    await import&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'source-map-support'&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;.then&lt;span class="o"&gt;((&lt;/span&gt;r&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; r.default.install&lt;span class="o"&gt;())&lt;/span&gt;
    ^^^^^

SyntaxError: Unexpected reserved word
    at Loader.moduleStrategy &lt;span class="o"&gt;(&lt;/span&gt;internal/modules/esm/translators.js:133:18&lt;span class="o"&gt;)&lt;/span&gt;
    at async &lt;span class="nb"&gt;link&lt;/span&gt; &lt;span class="o"&gt;(&lt;/span&gt;internal/modules/esm/module_job.js:42:21&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This error is often caused by your node version being below the expected version. Below are some guides to help you fix that:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;check your node version.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;node &lt;span class="nt"&gt;-v&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;if your node version is lower than &lt;strong&gt;version 21&lt;/strong&gt;, I will recommend you install &lt;strong&gt;node 21 or greater&lt;/strong&gt;.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;nvm &lt;span class="nb"&gt;install &lt;/span&gt;21
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;After the installation is done, you can now use the version 21.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;nvm use 21
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Run the app again with
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and the expected result should be:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;
&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; packit-frontend@0.0.0 dev
&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; vite


  VITE v5.3.4  ready &lt;span class="k"&gt;in &lt;/span&gt;222 ms

  ➜  Local:   http://localhost:5173/
  ➜  Network: use &lt;span class="nt"&gt;--host&lt;/span&gt; to expose
  ➜  press h + enter to show &lt;span class="nb"&gt;help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>typescript</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
