yearly-glance
An obsidian plugin to build "year at a glance" view.
File Explorer
- architecture.md
- files.md
- i18n-guide.md
- patterns.md
- bug_report.md
- config.yml
- feature_request.md
- pr-build.yml
- release.yml
- calendar.png
- details.png
- development-notes.md
- display-options.png
- filter.png
- glance-zh.webp
- glance.webp
- manager.png
- note-events-zh.md
- note-events.md
- settings.png
- view-and-edit.png
- whats-new-v4-zh.md
- whats-new-v4.md
- ai-translator.mjs
- changelog-option-zh.js
- changelog-option.js
- copy-to-vault.mjs
- esbuild.config.mjs
- generate-translated-changelog.mjs
- jest-compat.mjs
- load-env.mjs
- release-tag.mjs
- version-bump.mjs
- AutoComplete.css
- Button.css
- CalloutBlock.css
- ColorSelector.css
- ConfirmDialog.css
- DateInput.css
- EmojiPicker.css
- ImportUpload.css
- Input.css
- NavTabs.css
- Pre.css
- Select.css
- Toggle.css
- Tooltip.css
- Autocomplete.tsx
- Button.tsx
- CalloutBlock.tsx
- ColorSelector.tsx
- ConfirmDialog.tsx
- DateInput.tsx
- EmojiPicker.tsx
- FolderAutoComplete.tsx
- ImportUpload.tsx
- Input.tsx
- NavTabs.tsx
- Pre.tsx
- Select.tsx
- Toggle.tsx
- Tooltip.tsx
- DataExport.css
- DataImport.css
- DataPortManager.css
- ImportJson.css
- DataExport.tsx
- DataImport.tsx
- DataPortManager.tsx
- ImportJson.tsx
- EventFormModal.css
- EventForm.tsx
- EventFormModal.tsx
- EventManagerView.css
- SortControls.css
- EventItem.tsx
- EventList.tsx
- EventManager.tsx
- SortControls.tsx
- PresetColorSettings.css
- PresetEventTypeSettings.css
- SettingsTab.css
- CustomEmojiKeywordsEditor.tsx
- PresetColorSettings.tsx
- PresetEventTypeSettings.tsx
- SettingsBlock.tsx
- SettingsItem.tsx
- SettingsTab.tsx
- ViewSettings.tsx
- EventTooltip.css
- YearlyCalendarView.css
- EventTooltip.tsx
- YearlyCalendar.tsx
- emojiData.ts
- useEventBus.ts
- useYearlyCalendar.ts
- useYearlyGlanceConfig.ts
- en.ts
- zh-TW.ts
- zh.ts
- birthday.ts
- i18n.ts
- types.ts
- DailyNoteService.test.ts
- BasesEventFrontmatterService.ts
- DailyNoteService.ts
- DateParseService.ts
- iCalendarService.ts
- JsonService.ts
- MarkdownService.ts
- NoteEventService.ts
- BasesTypes.ts
- CalendarEvent.ts
- Config.ts
- DataPort.ts
- Date.ts
- Events.ts
- Settings.ts
- AGENTS.md
- dateValidator.ts
- eventCalculator.ts
- expandEventByDuration.test.ts
- expandEventByDuration.ts
- frontMatter.ts
- isoUtils.ts
- logger.ts
- lunarLibrary.ts
- migrateData.ts
- notePathFormat.ts
- resolveEventDisplay.ts
- specialHoliday.ts
- uniqueEventId.ts
- uuid.ts
- GlanceManagerView.css
- GlanceManagerView.tsx
- YearlyGlanceBasesView.tsx
- YearlyGlanceView.ts
- main.ts
- 2025节假日.json
- import.test.json
- manifest.json
- .editorconfig
- .env.example
- .eslintignore
- .eslintrc
- .gitignore
- .npmrc
- CHANGELOG-zh.md
- CHANGELOG.md
- CLAUDE.md
- CONTRIBUTING.md
- eslint.obsidian.mjs
- jest.config.js
- LICENSE
- MAKEFILE
- manifest-beta.json
- manifest.json
- package-lock.json
- package.json
- pnpm-lock.yaml
- README-zh.md
- README.md
- tsconfig.json
- versions.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
