<?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: yuyin</title>
    <description>The latest articles on DEV Community by yuyin (@yuyinws).</description>
    <link>https://dev.to/yuyinws</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%2F866415%2F249235c0-0543-4d7e-825a-2a574737c6e4.png</url>
      <title>DEV Community: yuyin</title>
      <link>https://dev.to/yuyinws</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yuyinws"/>
    <language>en</language>
    <item>
      <title>[Vite plugin] Jump to the editor by clicking console.log output.</title>
      <dc:creator>yuyin</dc:creator>
      <pubDate>Fri, 03 Nov 2023 02:37:50 +0000</pubDate>
      <link>https://dev.to/yuyinws/vite-plugin-jump-to-the-editor-by-clicking-consolelog-output-9hc</link>
      <guid>https://dev.to/yuyinws/vite-plugin-jump-to-the-editor-by-clicking-consolelog-output-9hc</guid>
      <description>&lt;p&gt;&lt;strong&gt;Vite-plugin-turbo-console&lt;/strong&gt; is a Vite plugin for enhancing console.log().&lt;br&gt;
Its main features include:&lt;/p&gt;
&lt;h2&gt;
  
  
  🔥 Features
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Output console.log content highlighted according to file type.&lt;/li&gt;
&lt;li&gt;Jump to editor from console by simple click.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;
  
  
  🎥 Screen Recording
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--fh-Z6yov--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/11/upgit_20231101_1698844263.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fh-Z6yov--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/11/upgit_20231101_1698844263.gif" alt="gif" width="800" height="498"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  📦 Install
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# npm&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-D&lt;/span&gt; vite-plugin-turbo-console
&lt;span class="c"&gt;# yarn&lt;/span&gt;
yarn add &lt;span class="nt"&gt;-D&lt;/span&gt; vite-plugin-turbo-console
&lt;span class="c"&gt;# pnpm&lt;/span&gt;
pnpm i &lt;span class="nt"&gt;-D&lt;/span&gt; vite-plugin-turbo-console
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  🦄 Usage
&lt;/h2&gt;
&lt;h3&gt;
  
  
  Vite
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;vite.config.ts&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;defineConfig&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;vite&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;TurboConsole&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;vite-plugin-turbo-console&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;// https://vitejs.dev/config/&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="nx"&gt;defineConfig&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
  &lt;span class="na"&gt;plugins&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="nx"&gt;TurboConsole&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
      &lt;span class="cm"&gt;/* options here */&lt;/span&gt;
    &lt;span class="p"&gt;})&lt;/span&gt;
  &lt;span class="p"&gt;],&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Nuxt
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;nuxt.config.ts&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// https://nuxt.com/docs/api/configuration/nuxt-config&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="nx"&gt;defineNuxtConfig&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
  &lt;span class="na"&gt;modules&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;vite-plugin-turbo-console/nuxt&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
  &lt;span class="p"&gt;],&lt;/span&gt;
  &lt;span class="na"&gt;turboConsole&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="cm"&gt;/* options here */&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;})&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Check the more information on &lt;a href="https://github.com/yuyinws/vite-plugin-turbo-console"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Welcome to use and feedback:)&lt;/p&gt;

</description>
      <category>vite</category>
      <category>javascript</category>
      <category>vue</category>
    </item>
    <item>
      <title>Introduce Stargazers: Analyze and explore the stars of any GitHub user.</title>
      <dc:creator>yuyin</dc:creator>
      <pubDate>Wed, 30 Aug 2023 15:29:54 +0000</pubDate>
      <link>https://dev.to/yuyinws/introduce-stargazers-analyze-and-explore-the-stars-of-any-github-user-28el</link>
      <guid>https://dev.to/yuyinws/introduce-stargazers-analyze-and-explore-the-stars-of-any-github-user-28el</guid>
      <description>&lt;p&gt;&lt;a href="https://stargazers.dev"&gt;Stargazers&lt;/a&gt; is a web application that allows you to add unlimited Github accounts and analyze and explore the star list of these accounts.&lt;/p&gt;

&lt;h2&gt;
  
  
  ScreenShot
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OlQ7vo0_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693229767.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OlQ7vo0_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693229767.png" alt="CleanShot 2023-08-28 at 21.35.29@2x" width="800" height="623"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IPsj0PHi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693226665.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IPsj0PHi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693226665.png" alt="CleanShot 2023-08-28 at 20.43.28@2x" width="800" height="566"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZLeRkgJH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693227392.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZLeRkgJH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693227392.png" alt="CleanShot 2023-08-28 at 20.55.31@2x" width="800" height="565"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Supports adding unlimited GitHub accounts.&lt;/li&gt;
&lt;li&gt;Supports adding accounts via various methods such as user search, GitHub OAuth, or one-click button (powered by UserScript).&lt;/li&gt;
&lt;li&gt;Supports querying based on star time, programming languages, repository information and more.&lt;/li&gt;
&lt;li&gt;Supports analyzing star lists.&lt;/li&gt;
&lt;li&gt;Dark mode support. &lt;/li&gt;
&lt;li&gt;Mobile end support.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  UserScript
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hzagFpfH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693228551.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hzagFpfH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.jsdelivr.net/gh/yuyinws/static%40master/2023/08/upgit_20230828_1693228551.png" alt="CleanShot 2023-08-28 at 21.15.21@2x" width="800" height="797"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://greasyfork.org/en/scripts/474055-add-to-stargazers"&gt;Install from greasyfork&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A UserScript that adds a button on the GitHub user profile page, allowing you to easily add it to stargazers.&lt;/p&gt;

&lt;p&gt;Welcome to use it and feel free to give your feedback.&lt;br&gt;
It's open source, you can find the source code on &lt;a href="https://github.com/yuyinws/stargazers"&gt;https://github.com/yuyinws/stargazers&lt;/a&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>projects</category>
      <category>opensource</category>
    </item>
    <item>
      <title>[vite plugin]Enhance the readability of console.log()</title>
      <dc:creator>yuyin</dc:creator>
      <pubDate>Wed, 17 May 2023 08:31:19 +0000</pubDate>
      <link>https://dev.to/yuyinws/vite-pluginenhance-the-readability-of-consolelog-3cc9</link>
      <guid>https://dev.to/yuyinws/vite-pluginenhance-the-readability-of-consolelog-3cc9</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwz2ymhicuo2migl39hgt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwz2ymhicuo2migl39hgt.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🔥 Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Support printing the file name, line number and variable name.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Support background highlighting of different files. (Currently supporting &lt;code&gt;.js(x)&lt;/code&gt;, &lt;code&gt;.ts(x)&lt;/code&gt;, &lt;code&gt;.vue&lt;/code&gt;, &lt;code&gt;.svelte&lt;/code&gt;, and &lt;code&gt;.astro&lt;/code&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  📦 Install
&lt;/h2&gt;

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

&lt;span class="c"&gt;# npm&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-D&lt;/span&gt; vite-plugin-turbo-console
&lt;span class="c"&gt;# yarn&lt;/span&gt;
yarn add &lt;span class="nt"&gt;-D&lt;/span&gt; vite-plugin-turbo-console
&lt;span class="c"&gt;# pnpm&lt;/span&gt;
pnpm i &lt;span class="nt"&gt;-D&lt;/span&gt; vite-plugin-turbo-console


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  🦄 Usage
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;vite.config.ts&lt;/strong&gt;&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;

&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;defineConfig&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;vite&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;TurboConsole&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;vite-plugin-turbo-console&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;// https://vitejs.dev/config/&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="nf"&gt;defineConfig&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
  &lt;span class="na"&gt;plugins&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nc"&gt;TurboConsole&lt;/span&gt;&lt;span class="p"&gt;()],&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;get more information on &lt;a href="https://github.com/yuyinws/vite-plugin-turbo-console" rel="noopener noreferrer"&gt;GitHub Source Code&lt;/a&gt;&lt;/p&gt;

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