<?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: Pruthvi Darji</title>
    <description>The latest articles on DEV Community by Pruthvi Darji (@pruthvidarji1993).</description>
    <link>https://dev.to/pruthvidarji1993</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F658387%2F7c33f71f-44cb-49a0-a13a-8c9137f68d53.png</url>
      <title>DEV Community: Pruthvi Darji</title>
      <link>https://dev.to/pruthvidarji1993</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pruthvidarji1993"/>
    <language>en</language>
    <item>
      <title>Why `npm audit` Isn't Enough to Secure Your React or Next.js App</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Wed, 15 Jul 2026 05:10:02 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/why-npm-audit-isnt-enough-to-secure-your-react-or-nextjs-app-3k58</link>
      <guid>https://dev.to/pruthvidarji1993/why-npm-audit-isnt-enough-to-secure-your-react-or-nextjs-app-3k58</guid>
      <description>&lt;p&gt;If you ship React or Next.js apps, chances are your entire security process is &lt;code&gt;npm audit&lt;/code&gt; before a release, maybe a Dependabot badge on the README, and calling it a day.&lt;/p&gt;

&lt;p&gt;That covers exactly one category of risk: known CVEs in your dependency tree. It says nothing about the security bugs sitting in &lt;strong&gt;your own code&lt;/strong&gt; — the ones that don't show up in any advisory database because they're specific to how &lt;em&gt;you&lt;/em&gt; wrote your app.&lt;/p&gt;

&lt;h2&gt;
  
  
  What &lt;code&gt;npm audit&lt;/code&gt; can't see
&lt;/h2&gt;

&lt;p&gt;A few real examples that &lt;code&gt;npm audit&lt;/code&gt; will never flag:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;An API key or private token hardcoded in a component and committed to the repo&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;dangerouslySetInnerHTML&lt;/code&gt; or &lt;code&gt;eval()&lt;/code&gt; used on user-controlled input&lt;/li&gt;
&lt;li&gt;A &lt;code&gt;NEXT_PUBLIC_&lt;/code&gt; environment variable that's quietly leaking a secret meant to stay server-side&lt;/li&gt;
&lt;li&gt;Non-serializable props crossing a Next.js Server/Client Component boundary (a correctness bug that's also a leakage risk)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;window&lt;/code&gt; or &lt;code&gt;localStorage&lt;/code&gt; accessed outside &lt;code&gt;useEffect&lt;/code&gt;, causing hydration mismatches&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.map&lt;/code&gt; source map files sitting in &lt;code&gt;public/&lt;/code&gt;, exposing your original TypeScript source in production&lt;/li&gt;
&lt;li&gt;A GPL/AGPL-licensed dependency that quietly puts your commercial product's license at risk&lt;/li&gt;
&lt;li&gt;A typosquatted or newly-flagged malicious package that hasn't hit the CVE databases yet&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;None of this is exotic. Most of it shows up in real production codebases, and none of it is something &lt;code&gt;npm audit&lt;/code&gt; was ever designed to catch.&lt;/p&gt;

&lt;h2&gt;
  
  
  A scanner built for how React/Next.js apps actually break
&lt;/h2&gt;

&lt;p&gt;I built &lt;a href="https://www.npmjs.com/package/web-secure-verification" rel="noopener noreferrer"&gt;&lt;code&gt;web-secure-verification&lt;/code&gt;&lt;/a&gt; to cover this gap specifically for React and Next.js projects — not a generic linter, not a CVE database wrapper.&lt;/p&gt;

&lt;p&gt;It runs 12 checks in one command:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Check&lt;/th&gt;
&lt;th&gt;What it catches&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;CVE / dependency audit&lt;/td&gt;
&lt;td&gt;Known vulnerabilities in installed packages&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Outdated / deprecated packages&lt;/td&gt;
&lt;td&gt;Packages with safer versions, or ones the maintainer abandoned&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hardcoded secrets&lt;/td&gt;
&lt;td&gt;API keys, tokens, private keys, high-entropy strings in source&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Code-level security&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;eval()&lt;/code&gt;, &lt;code&gt;innerHTML&lt;/code&gt;, &lt;code&gt;dangerouslySetInnerHTML&lt;/code&gt;, command injection patterns&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Next.js config&lt;/td&gt;
&lt;td&gt;Missing security headers, leaked &lt;code&gt;NEXT_PUBLIC_&lt;/code&gt; secrets, insecure image config&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;License compliance&lt;/td&gt;
&lt;td&gt;GPL/AGPL dependencies that can block commercial use&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Supply chain&lt;/td&gt;
&lt;td&gt;Typosquatted packages, known-malicious packages, shady &lt;code&gt;postinstall&lt;/code&gt; scripts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RSC boundary violations&lt;/td&gt;
&lt;td&gt;Non-serializable props crossing the server/client boundary&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hydration bugs&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;window&lt;/code&gt;/&lt;code&gt;localStorage&lt;/code&gt; in render, &lt;code&gt;new Date()&lt;/code&gt; in render&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bundle size&lt;/td&gt;
&lt;td&gt;Full &lt;code&gt;lodash&lt;/code&gt;/&lt;code&gt;moment&lt;/code&gt; imports, heavy components not lazy-loaded&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Exposed source maps&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;.map&lt;/code&gt; files leaking original source in public directories&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-D&lt;/span&gt; web-secure-verification
npx web-secure-verify scan
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You get a color-coded terminal report grouped by severity (Critical → Info), or export it as HTML, JSON, Markdown, or SARIF (for CI/GitHub code scanning):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx web-secure-verify scan &lt;span class="nt"&gt;--format&lt;/span&gt; sarif &lt;span class="nt"&gt;--output&lt;/span&gt; results.sarif
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Where it fits
&lt;/h2&gt;

&lt;p&gt;This isn't a replacement for &lt;code&gt;npm audit&lt;/code&gt;, Snyk, or Dependabot — it's meant to run alongside them. Those tools watch your dependency tree; this one watches the code you actually wrote and the Next.js-specific footguns that are easy to miss under deadline pressure.&lt;/p&gt;

&lt;p&gt;If you maintain a React or Next.js project, I'd genuinely like feedback — especially on false positives, or checks you think are missing. Repo's here: &lt;a href="https://github.com/pruthvidarji1993/web-secure-verification" rel="noopener noreferrer"&gt;github.com/pruthvidarji1993/web-secure-verification&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>nextjs</category>
      <category>security</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Useful Websites for Programmers</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Wed, 31 May 2023 06:20:11 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/useful-websites-for-programmers-23k8</link>
      <guid>https://dev.to/pruthvidarji1993/useful-websites-for-programmers-23k8</guid>
      <description>&lt;p&gt;I have found some of useful websites related programmers&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.showwcase.com/"&gt;https://www.showwcase.com/&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
Showwcase is a new social media website, especially for people who code connect, build community. It is a Linkedin like platform but only focused on developers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://devdocs.io/"&gt;https://devdocs.io/&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
DevDocs brings together numerous API documentation in a single, searchable interface. You will find docs related to various programming languages and technologies in one place.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://overapi.com/"&gt;https://overapi.com/&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
For all developers, OverAPI is cheat sheets for the majority of programming languages. Take a look at it right now.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>programming</category>
      <category>javascript</category>
      <category>api</category>
    </item>
    <item>
      <title>Media Processing libraries</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Wed, 31 May 2023 06:10:41 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/media-processing-libraries-4ij7</link>
      <guid>https://dev.to/pruthvidarji1993/media-processing-libraries-4ij7</guid>
      <description>&lt;p&gt;As a web developer in any technology, media processing and storage are crucial components of your project but now with so many options out there as these sites will provide you with the tools you need to manage and optimise your media files.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Embed.ly&lt;/strong&gt;:  Provides APIs for embedding media in a web page, responsive image scaling, extracting elements from a web page. The free plan allows up to 5000 URLs/month at 15 requests.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Cloudinary&lt;/strong&gt;: A service for image upload, powerful manipulations, storage &amp;amp; delivery for sites and apps with libraries&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Cloudimage&lt;/strong&gt;: A full image optimisation and CDN service, It offers a variety of image resizing, compression, watermarking functions &amp;amp; open source plugins for responsive image, image making etc...&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;imgbot&lt;/strong&gt;: Imgbot is a friendly robot that optimises your images and saves you time, optimised images mean smaller files sizes without sacrificing quality. It uses lossless compression by default.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Transloadit&lt;/strong&gt;: Handles file upload and encoding of video, audio, images, documents.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Uploadcare&lt;/strong&gt;: Uploadcare is a media pipeline platform that offers a range of tools for develoers such as file uploading API &amp;amp; UI, Image CDN and origin services with compression&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Gofile&lt;/strong&gt;: Free file sharing and storage platform, can be used via web based UI and also API. unlimited file size, bandwidth, download count etc...&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Tailwind Web Components</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Wed, 31 May 2023 06:08:21 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/tailwind-web-components-293l</link>
      <guid>https://dev.to/pruthvidarji1993/tailwind-web-components-293l</guid>
      <description>&lt;p&gt;Now a days tailwind CSS trending in any framework/technology specific UI development. I have found some of the best to use a tailwind based component libraries where you can customise the components with tailwind directly.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Daisy UI&lt;/strong&gt;: Daisy gives you special classes like "btn", "card", etc. These special classes are a combination of other tailwind utility classes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Flowbite&lt;/strong&gt;: Flowbite is a free and open-source set of Figma UI components and pages designed to integrate with the utility classes from Tailwind CSS.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;WindUI&lt;/strong&gt;: Like Flowbite but better. This component library does support many framework technology so just copy and paste.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Material Tailwind&lt;/strong&gt;: Very slick and professional looking component library. Unlike the others component libraries before...&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>javascript</category>
      <category>react</category>
      <category>tailwindcss</category>
    </item>
    <item>
      <title>Cool GitHub repositories for self-taught</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:16:33 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/cool-github-repositories-for-self-taught-1k53</link>
      <guid>https://dev.to/pruthvidarji1993/cool-github-repositories-for-self-taught-1k53</guid>
      <description>&lt;p&gt;A list of programming tutorials in which developers learn how to build an application from scratch. &lt;br&gt;
(&lt;a href="https://github.com/practical-tutorials/project-based-learning"&gt;https://github.com/practical-tutorials/project-based-learning&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;EBooks (&lt;a href="https://github.com/EbookFoundation/free-programming-books"&gt;https://github.com/EbookFoundation/free-programming-books&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Web Developer RoadMap (&lt;a href="https://github.com/kamranahmedse/developer-roadmap"&gt;https://github.com/kamranahmedse/developer-roadmap&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;List of free public APIs for use in Web Development (&lt;a href="https://github.com/public-apis/public-apis"&gt;https://github.com/public-apis/public-apis&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Learn and expand your coding Skills (&lt;a href="https://github.com/freeCodeCamp/freeCodeCamp"&gt;https://github.com/freeCodeCamp/freeCodeCamp&lt;/a&gt;)&lt;/p&gt;

</description>
      <category>git</category>
      <category>javascript</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Some of the really cool Website especially for improving Javascript Knowledge and code skills</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:11:28 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/some-of-the-really-cool-website-especially-for-improving-javascript-knowledge-and-code-skills-m3j</link>
      <guid>https://dev.to/pruthvidarji1993/some-of-the-really-cool-website-especially-for-improving-javascript-knowledge-and-code-skills-m3j</guid>
      <description>&lt;p&gt;&lt;a href="https://www.jschallenger.com/"&gt;https://www.jschallenger.com/&lt;/a&gt;&lt;br&gt;
(Do code challenges  &amp;amp; improve the logic implementation)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.java5cript.com/"&gt;https://www.java5cript.com/&lt;/a&gt;&lt;br&gt;
(Any thing you can learn about JavaScript &amp;amp; in that you will find the other options like Books, Courses, Videos, Fundamentals specific for JavaScript)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I would say this will help individuals who are working in JS framework OR looking to move in JS&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Some of the good Cheat Sheet found on internet</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:08:56 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/some-of-the-good-cheat-sheet-found-on-internet-3fnl</link>
      <guid>https://dev.to/pruthvidarji1993/some-of-the-good-cheat-sheet-found-on-internet-3fnl</guid>
      <description>&lt;p&gt;&lt;strong&gt;OverAPI&lt;/strong&gt;: This cheat sheet for many web programming language such as JS, PHP, Node, CSS etc...&lt;br&gt;
URL: &lt;a href="https://overapi.com/"&gt;https://overapi.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Git Sheet&lt;/strong&gt;: Each GIT command explains in detail&lt;br&gt;
URL: &lt;a href="https://gitsheet.wtf/"&gt;https://gitsheet.wtf/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Developer Cheat sheet&lt;/strong&gt;: Contains various cheat sheet like React, ES6 etc...&lt;br&gt;
URL: &lt;a href="http://www.developer-cheatsheets.com/"&gt;http://www.developer-cheatsheets.com/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Roadmap Of Javascript</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:07:30 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/roadmap-of-javascript-3gf7</link>
      <guid>https://dev.to/pruthvidarji1993/roadmap-of-javascript-3gf7</guid>
      <description>&lt;p&gt;This road map shows most of the topics related JavaScript, you can also learn one by one each topic by completed the highlighted link and their related lessons.&lt;/p&gt;

&lt;p&gt;Road map of JavaScript: &lt;a href="https://learnjavascript.online/knowledge-map.html"&gt;https://learnjavascript.online/knowledge-map.html&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>frontend</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>2022: Best State management libraries in React JS</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:06:05 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/2022-best-state-management-libraries-in-react-js-1e1h</link>
      <guid>https://dev.to/pruthvidarji1993/2022-best-state-management-libraries-in-react-js-1e1h</guid>
      <description>&lt;p&gt;As we all know that in react, state management is the way from that we can access the object in entire web &amp;amp; most of the projects and at the time of learning we are using "react-redux" but now we have to use other state management libraries those are more compatible compare to "react-redux"&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Zustand: &lt;a href="https://zustand-demo.pmnd.rs/"&gt;https://zustand-demo.pmnd.rs/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Recoil: &lt;a href="https://recoiljs.org/"&gt;https://recoiljs.org/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hookstate: &lt;a href="https://hookstate.js.org/"&gt;https://hookstate.js.org/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Redux Toolkit: &lt;a href="https://redux-toolkit.js.org/"&gt;https://redux-toolkit.js.org/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So now I am expecting from you guys that from the next/new projects we are starting to use new state management libraries...&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Learn continually – there’s always “one more thing” to learn."&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>react</category>
      <category>redux</category>
    </item>
    <item>
      <title>Best Animation Libraries specific in React</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:02:46 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/best-animation-libraries-specific-in-react-386</link>
      <guid>https://dev.to/pruthvidarji1993/best-animation-libraries-specific-in-react-386</guid>
      <description>&lt;p&gt;Nowadays many frameworks/libraries have come to make you fast in development, according to UI development trending some of the tools are currently frequently used to create isolated components to make development faster.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.framer.com/motion/"&gt;https://www.framer.com/motion/&lt;/a&gt; (Animation effect)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://storybook.js.org/docs/react/get-started/introduction"&gt;https://storybook.js.org/docs/react/get-started/introduction&lt;/a&gt; (creating components)&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>react</category>
    </item>
    <item>
      <title>Create Local Server and Share anywhere without deploying on any server (live) NGrok</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:01:46 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/create-local-server-and-share-anywhere-without-deploying-on-any-server-live-ngrok-4m2g</link>
      <guid>https://dev.to/pruthvidarji1993/create-local-server-and-share-anywhere-without-deploying-on-any-server-live-ngrok-4m2g</guid>
      <description>&lt;p&gt;this is the cool solution like ngrok Secure Tunnels allow you to instantly open access to remote systems, means if you are working in local and if you need to show changes to anyone without any deployment then you can easily do with this..&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ngrok.com/"&gt;https://ngrok.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You just need to do local installation in system and configuration then you can easily manage (&lt;a href="https://ngrok.com/download"&gt;https://ngrok.com/download&lt;/a&gt;)&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>ngrok</category>
      <category>deployment</category>
      <category>serverless</category>
    </item>
    <item>
      <title>Quick Learning things specific for frontend (javascript &amp; React)</title>
      <dc:creator>Pruthvi Darji</dc:creator>
      <pubDate>Tue, 13 Sep 2022 12:00:27 +0000</pubDate>
      <link>https://dev.to/pruthvidarji1993/quick-learning-things-specific-for-frontend-javascript-react-2dgk</link>
      <guid>https://dev.to/pruthvidarji1993/quick-learning-things-specific-for-frontend-javascript-react-2dgk</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Webpack Bundle Analyzer: &lt;a href="https://www.npmjs.com/package/webpack-bundle-analyzer"&gt;https://www.npmjs.com/package/webpack-bundle-analyzer&lt;/a&gt;&lt;br&gt;
Visualise the size of output files with tree-map format.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Micro Front end Architecture: &lt;a href="https://micro-frontends.org/"&gt;https://micro-frontends.org/&lt;/a&gt;&lt;br&gt;
The current trend is to build a feature-rich and powerful browser application&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;30 Seconds of Code: &lt;a href="https://www.30secondsofcode.org/"&gt;https://www.30secondsofcode.org/&lt;/a&gt;&lt;br&gt;
Short JavaScript code snippets for all your development needs.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>javascript</category>
      <category>react</category>
    </item>
  </channel>
</rss>
