{"id":26587614,"url":"https://github.com/increpare/orthona","last_synced_at":"2026-03-08T13:33:27.346Z","repository":{"id":8052009,"uuid":"42362883","full_name":"increpare/orthona","owner":"increpare","description":"stupid conlang project","archived":false,"fork":false,"pushed_at":"2022-03-01T23:47:51.000Z","size":73130,"stargazers_count":13,"open_issues_count":27,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-09T10:01:40.905Z","etag":null,"topics":["conlang"],"latest_commit_sha":null,"homepage":"http://www.orthona.net","language":"JavaScript","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/increpare.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["increpare"],"patreon":"increpare","custom":["paypal.me/increparegames"]}},"created_at":"2015-09-12T15:52:31.000Z","updated_at":"2025-02-11T07:30:13.000Z","dependencies_parsed_at":"2022-08-06T20:15:50.588Z","dependency_job_id":null,"html_url":"https://github.com/increpare/orthona","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/increpare/orthona","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/increpare%2Forthona","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/increpare%2Forthona/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/increpare%2Forthona/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/increpare%2Forthona/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/increpare","download_url":"https://codeload.github.com/increpare/orthona/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/increpare%2Forthona/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278557237,"owners_count":26006294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["conlang"],"created_at":"2025-03-23T12:29:29.345Z","updated_at":"2025-10-06T04:15:09.176Z","avatar_url":"https://github.com/increpare.png","language":"JavaScript","funding_links":["https://github.com/sponsors/increpare","https://patreon.com/increpare","paypal.me/increparegames"],"categories":[],"sub_categories":[],"readme":"# mime-db\n\n[![NPM Version][npm-version-image]][npm-url]\n[![NPM Downloads][npm-downloads-image]][npm-url]\n[![Node.js Version][node-image]][node-url]\n[![Build Status][travis-image]][travis-url]\n[![Coverage Status][coveralls-image]][coveralls-url]\n\nThis is a database of all mime types.\nIt consists of a single, public JSON file and does not include any logic,\nallowing it to remain as un-opinionated as possible with an API.\nIt aggregates data from the following sources:\n\n- http://www.iana.org/assignments/media-types/media-types.xhtml\n- http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types\n- http://hg.nginx.org/nginx/raw-file/default/conf/mime.types\n\n## Installation\n\n```bash\nnpm install mime-db\n```\n\n### Database Download\n\nIf you're crazy enough to use this in the browser, you can just grab the\nJSON file using [RawGit](https://rawgit.com/). It is recommended to replace\n`master` with [a release tag](https://github.com/jshttp/mime-db/tags) as the\nJSON format may change in the future.\n\n```\nhttps://cdn.rawgit.com/jshttp/mime-db/master/db.json\n```\n\n## Usage\n\n```js\nvar db = require('mime-db');\n\n// grab data on .js files\nvar data = db['application/javascript'];\n```\n\n## Data Structure\n\nThe JSON file is a map lookup for lowercased mime types.\nEach mime type has the following properties:\n\n- `.source` - where the mime type is defined.\n    If not set, it's probably a custom media type.\n    - `apache` - [Apache common media types](http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types)\n    - `iana` - [IANA-defined media types](http://www.iana.org/assignments/media-types/media-types.xhtml)\n    - `nginx` - [nginx media types](http://hg.nginx.org/nginx/raw-file/default/conf/mime.types)\n- `.extensions[]` - known extensions associated with this mime type.\n- `.compressible` - whether a file of this type can be gzipped.\n- `.charset` - the default charset associated with this type, if any.\n\nIf unknown, every property could be `undefined`.\n\n## Contributing\n\nTo edit the database, only make PRs against `src/custom.json` or\n`src/custom-suffix.json`.\n\nTo update the build, run `npm run build`.\n\n## Adding Custom Media Types\n\nThe best way to get new media types included in this library is to register\nthem with the IANA. The community registration procedure is outlined in\n[RFC 6838 section 5](http://tools.ietf.org/html/rfc6838#section-5). Types\nregistered with the IANA are automatically pulled into this library.\n\n[npm-version-image]: https://img.shields.io/npm/v/mime-db.svg\n[npm-downloads-image]: https://img.shields.io/npm/dm/mime-db.svg\n[npm-url]: https://npmjs.org/package/mime-db\n[travis-image]: https://img.shields.io/travis/jshttp/mime-db/master.svg\n[travis-url]: https://travis-ci.org/jshttp/mime-db\n[coveralls-image]: https://img.shields.io/coveralls/jshttp/mime-db/master.svg\n[coveralls-url]: https://coveralls.io/r/jshttp/mime-db?branch=master\n[node-image]: https://img.shields.io/node/v/mime-db.svg\n[node-url]: http://nodejs.org/download/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fincrepare%2Forthona","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fincrepare%2Forthona","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fincrepare%2Forthona/lists"}