<?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: yuki0920</title>
    <description>The latest articles on DEV Community by yuki0920 (@yuki0920).</description>
    <link>https://dev.to/yuki0920</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%2F473437%2F88e4ec75-4751-4ee3-849d-3de2f9e9e41c.jpg</url>
      <title>DEV Community: yuki0920</title>
      <link>https://dev.to/yuki0920</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yuki0920"/>
    <language>en</language>
    <item>
      <title>From Personal Project to Open Source: Releasing Japan Listed Companies Site</title>
      <dc:creator>yuki0920</dc:creator>
      <pubDate>Mon, 07 Aug 2023 11:57:18 +0000</pubDate>
      <link>https://dev.to/yuki0920/from-personal-project-to-open-source-releasing-japan-listed-companies-site-41d3</link>
      <guid>https://dev.to/yuki0920/from-personal-project-to-open-source-releasing-japan-listed-companies-site-41d3</guid>
      <description>&lt;p&gt;This is my first article in English!&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;I have released a web service I was developing individually as OSS. I will write about the background and technical environment of this release.&lt;/p&gt;




&lt;p&gt;All the source code is available on GitHub.&lt;br&gt;
I would be delighted if you could star or contribute it!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/yuki0920/company-ranking"&gt;https://github.com/yuki0920/company-ranking&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Released Service: Japan Listed Companies
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HZ3TAnjT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/010o3hjc732d3yzxecoh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HZ3TAnjT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/010o3hjc732d3yzxecoh.png" alt="Image description" width="800" height="291"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Recently, I released a web service as open source.&lt;br&gt;
Of course, English as well as Japanese is available!&lt;br&gt;
It's a service called "Japan Listed Company", allowing you to view Japanese listed companies by industry in order of "salary" or "sales."&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;URL: &lt;a href="https://www.company-ranking.net/en"&gt;https://www.company-ranking.net/en&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/yuki0920/company-ranking"&gt;https://github.com/yuki0920/company-ranking&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I have experienced job-hunting twice, and there are several things you want to know when choosing a company, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"How much is the salary?"&lt;/li&gt;
&lt;li&gt;"What are the sales and profits like?"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Such information is rarely listed on job pages, and you can only find out by looking at the company's financial statements.&lt;/p&gt;

&lt;p&gt;But researching financial information for each company is a hassle, isn't it?&lt;/p&gt;

&lt;p&gt;So, I created a service that I wanted to use as a user. I have been developing it with a focus on making it easy to see and use.&lt;/p&gt;

&lt;h2&gt;
  
  
  Technical Environment
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--c3dYXgPU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/awnqrjv8zbu14pie3awu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--c3dYXgPU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/awnqrjv8zbu14pie3awu.png" alt="Image description" width="800" height="601"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Worker: Ruby, Ruby on Rails&lt;/li&gt;
&lt;li&gt;Web API: Go, chi&lt;/li&gt;
&lt;li&gt;Frontend: TypeScript, React, Next.js&lt;/li&gt;
&lt;li&gt;Infra: Heroku (Server, DB, Scheduler)&lt;/li&gt;
&lt;li&gt;Hosting: Vercel&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I recently revamped the technology stack to the above configuration.&lt;br&gt;
I'm using Heroku for infrastructure, a friend of individual development.&lt;/p&gt;

&lt;h3&gt;
  
  
  About Worker
&lt;/h3&gt;

&lt;p&gt;Heroku Scheduler activates the Worker, and Rails' regular jobs are executed. These jobs have several types, mainly responsible for retrieving company information, financial information, and saving it to the DB.&lt;/p&gt;

&lt;h3&gt;
  
  
  About Web API
&lt;/h3&gt;

&lt;p&gt;I have adopted Go for the Web API.&lt;br&gt;
I define the schema with Open API and generate server code using &lt;a href="https://github.com/deepmap/oapi-codegen"&gt;oapi-codegen&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Initially, this Web API was written in Rails, like the Worker, but I replaced it with Go for personal reasons. I often use Go for the backend at work and don't have a chance to touch Rails. So I wanted to implement the Web API in Go, where I have some knowledge, and replaced it with Go.&lt;/p&gt;

&lt;h3&gt;
  
  
  About Frontend
&lt;/h3&gt;

&lt;p&gt;I have adopted Next.js for the Frontend.&lt;br&gt;
I'm using App Router instead of the conventional Page Router.&lt;/p&gt;

&lt;p&gt;Initially, I used Nuxt.js (2.x) with Composition API for the Frontend. However, considering the high hurdles for updating to Nuxt.js 3.x and the ecosystem not catching up with Vue3, I replaced it with Next.js.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I Released It as OSS
&lt;/h2&gt;

&lt;p&gt;Why did I release a service I was developing individually as OSS?&lt;br&gt;
It's because I couldn't see a way to monetize it.&lt;/p&gt;

&lt;p&gt;Initially, I aimed to monetize through AdSense or job advertisements by generating PV. However, the current PV is only about 500 per month at most. I tried changing Keywords or Descriptions to improve SEO, but I didn't see significant improvement.&lt;/p&gt;

&lt;p&gt;I also considered selling the website, but unless it was already generating revenue, the price would hardly be set, and the market price seemed to be around 100,000 yen.&lt;/p&gt;

&lt;p&gt;If I couldn't monetize it, I thought I might as well make it part of my technology portfolio, so I decided to release it as OSS.&lt;/p&gt;

&lt;p&gt;By releasing it, I also hope to receive feedback from all of you and use it to improve the service.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lastly
&lt;/h2&gt;

&lt;p&gt;Thank you for reading to the end.&lt;/p&gt;

&lt;p&gt;Please take a look!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/yuki0920/company-ranking"&gt;https://github.com/yuki0920/company-ranking&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;URL: &lt;a href="https://www.company-ranking.net/en"&gt;https://www.company-ranking.net/en&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
