Akara Chen
Akara's 🚀 Blog

Akara's 🚀 Blog

Follow
homeLinkChinese

pnpm monorepo quick start

Jan 13, 20232 min read 120 views

Introduction When you open this article, I acquiesce that you know about monorepo, so I don't want to talk nonsense, let's start straight away. Create...

pnpm monorepo quick start

How to make a modern npm package

Sep 11, 20224 min read 157 views

I've been working on an npm package for a while now, in an age of ESM and CJS going hand in hand, it is not enough that you add just one of these...

How to make a modern npm package

Vue 3 i18n Notes

Aug 10, 20222 min read 225 views

Recently, I've been working on a front-end project with i18n support, and I'd like to note the steps here. Step 1: Install dependency pnpm add...

Vue 3 i18n Notes

Set up Windows for development

Aug 8, 20222 min read 98 views

Recently I wiped my Windows computer because of my cluttered config, and I'm here to tell you how to set up an elegant environment. configure shell At...

Set up Windows for development

Use Pure ESM package in TypeScript project

Aug 6, 20222 min read 407 views

When you write a Node.js application using TypeScript, the default configuraion will treat the ESM package as CommonJS package, just like this: //...

Use Pure ESM package in TypeScript project

Optimize the use of if-else, you need a better selective structure!

Jun 7, 20223 min read 233 views

I don't know if you've ever encountered an if-else nesting like a pyramid placed horizontally: if (true) { } if (true) { } if (true) { if (true)...

Optimize the use of if-else, you need a better selective structure!