Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/popuguytheparrot/feather-structure
🧾These are thoughts how to build and maintenance applications
https://github.com/popuguytheparrot/feather-structure
guide project-management project-structure project-template suggestions
Last synced: 27 days ago
JSON representation
🧾These are thoughts how to build and maintenance applications
- Host: GitHub
- URL: https://github.com/popuguytheparrot/feather-structure
- Owner: popuguytheparrot
- Created: 2019-04-10T14:11:16.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-18T14:18:00.000Z (over 4 years ago)
- Last Synced: 2024-11-10T13:47:29.685Z (3 months ago)
- Topics: guide, project-management, project-structure, project-template, suggestions
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Feather Structure
## Схема
```
├── docs
├── public
├── src/
│ ├── api
│ ├── constants
│ ├── features
│ ├── lib
│ ├── pages
│ ├── theme
│ ├── index.js
│ ├── index.html
│ └── App.js
└── файлы конфигураций, README и т.д
```## Описание
### api
Директория с функциями делающие ajax-запросы.
Организовать эти функции можно по `endpoint` вашего `rest api`
Например:
```
├── api
├── profile // /api/v1/profile
├── index.js // В index.js можно записать все функции взаимодействующие с endpoint.
// Либо создавать под каждую функцию отдельный файл.
```
```js
// index.jsexport function getUserInfo() {}
export function saveUserInfo() {}
```### constants
### configs
### features
### lib
### pages
### theme