Home
Softono

Nuxt Practice Ca Like

Open source TypeScript
29
Stars
1
Forks
0
Issues
1
Watchers
4 years
Last Commit

 About Nuxt Practice Ca Like

nuxt-practice-ca-like

Platforms

Web Self-hosted

Languages

TypeScript

Links

Need Help Installing Nuxt Practice Ca Like?

We provide expert installation service for this software. Our team will install, configure, and secure Nuxt Practice Ca Like on your server. plans start at just $30.

Nuxt Practice Ca Like

View on GitHub

nuxt-practice-ca-like

手順

install dependencies

% npm i

mockを使用した開発

1. .env.local.js を作成
2. 以下のように API_URL を指定する

module.exports = {
  API_URL: 'http://localhost:8881',
};

3. `npm run local` を叩く
4. http://localhost:3000 にアクセス

ローカルサーバーを立てた開発

1. .env.development.js を作成
2. API_URL を指定
3. `npm run dev` を叩く
4. ローカルサーバーを立てる
5. http://localhost:3000 にアクセス

本番

1. .env.production.js を作成
2. API_URL を指定
3. `npm run prod` を叩く

jest

% npm run test

TODO

  • Domainの見直し
  • DIコンテナの作り直し
  • Request(args)型の持たせ方と置き場所
  • storeへ移行
  • 集約ルートの作成
    • Domainに必要な値を抽出
    • フロントで使用する値に加工
  • unit test
  • e2e test