Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/okoge-kaz/meteor-todo-list
For learning Meteor + Typescript + React (for Senkyo.inc Project)
https://github.com/okoge-kaz/meteor-todo-list
ant-design meteor react typescript
Last synced: about 1 month ago
JSON representation
For learning Meteor + Typescript + React (for Senkyo.inc Project)
- Host: GitHub
- URL: https://github.com/okoge-kaz/meteor-todo-list
- Owner: okoge-kaz
- Created: 2022-02-23T13:41:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-23T23:56:14.000Z (almost 3 years ago)
- Last Synced: 2024-11-02T20:25:36.636Z (3 months ago)
- Topics: ant-design, meteor, react, typescript
- Language: TypeScript
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# meteor-todo-list
## How to create Environment
1. create app
`$ meteor create --typescript app-name`2. add ant design
`$ npm install antd`3. add sass support
`$ meteor add foursevne:scss`4. start app
`$ meteor run`5. add `dev-error-overlay`
`$ meteor add dev-error-overlay`
(Meteor Tutorialより)
## Docs- Meteor + TypeScript + React Application
https://guide.meteor.com/build-tool.html#typescript- Create App
https://react-tutorial.meteor.com/simple-todos/01-creating-app.html- Add Sass Support
https://atmospherejs.com/fourseven/scss- Add Ant Design
https://ant.design/docs/react/introduce#Installation## Warnings
- `export default function name`
この書き方は、Next.jsの場合はうまくいくがMeteorでは上手くいかないらしい。##