{"id":22903712,"url":"https://github.com/nevoland/foundation","last_synced_at":"2026-02-15T08:34:19.674Z","repository":{"id":40791160,"uuid":"115948705","full_name":"nevoland/foundation","owner":"nevoland","description":"🏛 Base repository for building JavaScript apps or libraries.","archived":false,"fork":false,"pushed_at":"2025-03-16T22:48:24.000Z","size":571,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-11T21:36:20.731Z","etag":null,"topics":["boilerplate","bundler","front-end","javascript","library","webapp"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nevoland.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-01-01T21:19:57.000Z","updated_at":"2025-03-16T22:48:27.000Z","dependencies_parsed_at":"2023-02-14T10:10:18.849Z","dependency_job_id":"52e16af8-6cb0-4a63-8ec4-6483bb52a5d6","html_url":"https://github.com/nevoland/foundation","commit_stats":{"total_commits":31,"total_committers":1,"mean_commits":31.0,"dds":0.0,"last_synced_commit":"ede629354cbcd9d93e610a912f3f736cf21ac499"},"previous_names":["nevoland/foundation","davidbonnet/foundation"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/nevoland/foundation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nevoland%2Ffoundation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nevoland%2Ffoundation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nevoland%2Ffoundation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nevoland%2Ffoundation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nevoland","download_url":"https://codeload.github.com/nevoland/foundation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nevoland%2Ffoundation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29473718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T06:58:05.414Z","status":"ssl_error","status_checked_at":"2026-02-15T06:58:05.085Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boilerplate","bundler","front-end","javascript","library","webapp"],"created_at":"2024-12-14T02:38:21.858Z","updated_at":"2026-02-15T08:34:19.646Z","avatar_url":"https://github.com/nevoland.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Foundation\n\n🏛️ Base repository for building JavaScript apps or libraries.\n\n\u003c!-- Delete start --\u003e\n\n\u003e To use this template, clone this repository and rename all \"Foundation\" instances to the name of your library.\n\u003e Set this package to \"public\" before publishing it.\n\n### Uses\n\n- [Vite](https://vitejs.dev)\n- [Vitest](https://vitest.dev)\n- [TypeScript](https://www.typescriptlang.org)\n- [Prettier](https://prettier.io)\n- [Eslint](https://eslint.org)\n- [Tailwind](https://tailwindcss.com)\n- [Typedoc](https://typedoc.org)\n- [NVM](https://github.com/nvm-sh/nvm)\n\n\u003c!-- Delete end --\u003e\n\n## Setup\n\n- `nvm install`\n- `cp .env.template .env.local`\n- `npm install`\n\n## Library mode\n\n### Features\n\n- List the main features of the library\n- Explain how it distinguishes from other libraries\n\n### Usage\n\nEverything is exported from the main entry-point through an ES6 module:\n\n```js\nimport { add } from \"foundation\";\n```\n\n### Installation\n\nInstall with the [Node Package Manager](https://www.npmjs.com/package/foundation):\n\n```bash\nnpm install foundation\n```\n\n### Documentation\n\nDocumentation is generated [here](doc/README.md).\n\n### Use the application to test the library\n\n- `npm run dev`\n- `npm run dev:test` (or use dedicated Vitest plugin of your IDE)\n\nImport exported library items from the `\"#lib\"` alias:\n\n```ts\nimport { add } from \"#lib\";\n```\n\n### Build and publish the library\n\n- `npm run build:lib`\n- Set the `private` property to `false` in [package.json](./package.json)\n- `npm run release:init`\n\n#### Release subsequent versions using either\n\n- `npm run release:alpha`\n- `npm run release:beta`\n- `npm run release:patch`\n- `npm run release:minor`\n- `npm run release:major`\n\n## Application mode\n\n### Develop on the application\n\n- `npm run dev`\n- `npm run dev:test` (or use dedicated Vitest plugin of your IDE)\n\n### Build and run\n\n- `npm run build:app`\n- OPTIONAL: `export ENV_PATH=path/to/extra/dot_env/file`\n- `npm start`\n\n### Options\n\nList all environment variables used by the application:\n\n- `ENV_PATH`: Path to an optional environment file.\n- `LOG_LEVEL`: One of the [supported levels](https://github.com/pinojs/pino/blob/main/docs/api.md#loggerlevels-object) or `\"silent\"` to disable logging.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnevoland%2Ffoundation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnevoland%2Ffoundation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnevoland%2Ffoundation/lists"}