DEV Community

Yasunori Tanaka
Yasunori Tanaka

Posted on

[From April 30 to May 6] The things I knew and thought last week

[team building] Being so nice about answering a question that makes us easy to ask a question

writing...

[design] Do we need a template for creating CRUD API in backend and frontend?

writing...

[JavaScript] catch a Promise reject

try {
  await asyncFunc()
} catch (e) {
  console.error(e)
  throw new Error(e)
}

[Git] commit message

I though what commit message is best for our team. For now, this commit message is better because when we look into some problem, a commit message after the issue number makes us quickly understand what we did in the commit.

commit message

solve my-repo/my-project#1 <message what you solved in this commit>

[Nuxt] I red Nuxt code inside

Our team has been using Nuxt and, I wanted to understand the inside. So I understood the outlines.

From Nuxt entry point to responding Vue to a client
Alt Text

Top comments (1)

Collapse
 
thisdotmedia_staff profile image
This Dot Media

Thanks for sharing your recent past with us Yasunori! Great read