<?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>Forem: kinensake</title>
    <description>The latest articles on Forem by kinensake (@kinensake).</description>
    <link>https://forem.com/kinensake</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%2F200201%2Fa3445ceb-1e61-4976-8d3d-b1aafa61e168.jpeg</url>
      <title>Forem: kinensake</title>
      <link>https://forem.com/kinensake</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/kinensake"/>
    <language>en</language>
    <item>
      <title>Gosearch - A Package Searching and Installation tool for Go Projects</title>
      <dc:creator>kinensake</dc:creator>
      <pubDate>Wed, 22 Dec 2021 04:28:42 +0000</pubDate>
      <link>https://forem.com/kinensake/gosearch-a-package-searching-and-installation-tool-for-go-projects-hpd</link>
      <guid>https://forem.com/kinensake/gosearch-a-package-searching-and-installation-tool-for-go-projects-hpd</guid>
      <description>&lt;h3&gt;
  
  
  Introduction
&lt;/h3&gt;

&lt;p&gt;When starting a new Go project, you often "go get" some package likes mux, mongo go driver, gorm,... And with each package, you need to remember full path of that package:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;go get -u github.com/gorilla/mux
go get go.mongodb.org/mongo-driver/mongo
go get -u gorm.io/gorm
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It's really inconvenient. But don't worry, I have written small tool that you can use to search and install go packages with just &lt;strong&gt;keyword&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;go install github.com/kinensake/gosearch@v1.0.2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Usage
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;gosearch &amp;lt;package-keyword&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then choose package in package list to install.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example
&lt;/h3&gt;

&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%2F5lv23u14ftidi67rmvzl.gif" 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%2F5lv23u14ftidi67rmvzl.gif" alt="Demo"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This will get package into your module automatically.&lt;/p&gt;




&lt;p&gt;Github Repository: &lt;a href="https://github.com/kinensake/gosearch" rel="noopener noreferrer"&gt;https://github.com/kinensake/gosearch&lt;/a&gt;&lt;br&gt;
If you like it, please give my repository one star ⭐&lt;br&gt;
Your contribution is also my honor ❤️&lt;/p&gt;

</description>
      <category>go</category>
      <category>github</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Psearch - A Package Searching and Installation tool for Go Projects</title>
      <dc:creator>kinensake</dc:creator>
      <pubDate>Tue, 21 Dec 2021 05:36:40 +0000</pubDate>
      <link>https://forem.com/kinensake/psearch-a-package-searching-and-installation-for-go-project-33gh</link>
      <guid>https://forem.com/kinensake/psearch-a-package-searching-and-installation-for-go-project-33gh</guid>
      <description>&lt;h3&gt;
  
  
  Introduction
&lt;/h3&gt;

&lt;p&gt;When starting a new Go project, you often "go get" some package likes mux, mongo go driver, gorm,... And with each package, you need to remember full path of that package:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;go get -u github.com/gorilla/mux
go get go.mongodb.org/mongo-driver/mongo
go get -u gorm.io/gorm
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It's really inconvenient. But don't worry, I have written small tool that you can use to search and install go packages with just &lt;strong&gt;keyword&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;go install github.com/kinensake/psearch@v1.0.1
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Usage
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;psearch &amp;lt;package-keyword&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then choose package in package list to install.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KSP0riVT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bcw036m4plopaktu28nl.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KSP0riVT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bcw036m4plopaktu28nl.gif" alt="Demo" width="600" height="393"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This will get package into your module automatically.&lt;/p&gt;




&lt;p&gt;Github Repository: &lt;a href="https://github.com/kinensake/psearch"&gt;https://github.com/kinensake/psearch&lt;/a&gt;&lt;br&gt;
If you like it, please give my repository one star ⭐&lt;br&gt;
Your contribution is also my honor ❤️&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How can Nodejs handle many requests ?</title>
      <dc:creator>kinensake</dc:creator>
      <pubDate>Tue, 13 Aug 2019 14:23:49 +0000</pubDate>
      <link>https://forem.com/kinensake/how-can-nodejs-handle-many-requests-4a01</link>
      <guid>https://forem.com/kinensake/how-can-nodejs-handle-many-requests-4a01</guid>
      <description>&lt;p&gt;Hello everyone, I'm a newbie in Node.js. &lt;br&gt;
I read that Node.js has 4 threads in default, but why can it handle many requests (accessing database) at the same time quickly ? &lt;br&gt;
I think it only handles 4 requests at the same time, right ?&lt;br&gt;
Please help me :'((((&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascript</category>
      <category>help</category>
    </item>
  </channel>
</rss>
