nocobase/packages/samples/shop-i18n
2023-07-08 08:29:33 +08:00
..
src refactor(client)!: application, router and plugin (#2068) 2023-07-07 14:35:22 +08:00
client.d.ts refactor(client)!: application, router and plugin (#2068) 2023-07-07 14:35:22 +08:00
client.js refactor(client)!: application, router and plugin (#2068) 2023-07-07 14:35:22 +08:00
package.json chore(versions): 😊 publish v0.11.0-alpha.1 2023-07-08 08:29:33 +08:00
README.md fix(sample): fix shop-i18n client (#1005) 2022-11-02 00:29:50 +08:00
server.d.ts refactor(client)!: application, router and plugin (#2068) 2023-07-07 14:35:22 +08:00
server.js refactor(client)!: application, router and plugin (#2068) 2023-07-07 14:35:22 +08:00

I18n for simple shop scenario

Register

yarn pm add sample-shop-i18n

Activate

yarn pm enable sample-shop-i18n

Launch the app

# for development
yarn dev

# for production
yarn build
yarn start

Connect to the API

Products API

# create a product
curl -X POST -d '{"title": "iPhone 14 Pro", "price": "7999", "enabled": true, "inventory": 10}' "http://localhost:13000/api/products"

# list products
curl "http://localhost:13000/api/products"

# get product which id=1
curl "http://localhost:13000/api/products?filterByTk=1"

Orders API

# create a order
curl -X POST -d '{"productId": 1, "quantity": 1, "totalPrice": "7999", "userId": 1}' 'http://localhost:13000/api/orders'

# list orders which userId=1 with product
curl 'http://localhost:13000/api/orders?filter={"userId":1}&appends=product'