{"id":24910509,"url":"https://github.com/angular-material-extensions/typography","last_synced_at":"2026-04-27T23:38:26.865Z","repository":{"id":95097796,"uuid":"136085967","full_name":"angular-material-extensions/typography","owner":"angular-material-extensions","description":"Set of angular directives to allow typography manipulation","archived":false,"fork":false,"pushed_at":"2018-06-06T07:29:17.000Z","size":376,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T01:58:36.840Z","etag":null,"topics":["angular","extensions","typography"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/angular-material-extensions.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2018-06-04T21:40:47.000Z","updated_at":"2018-06-05T06:41:42.000Z","dependencies_parsed_at":"2023-05-26T15:45:28.667Z","dependency_job_id":null,"html_url":"https://github.com/angular-material-extensions/typography","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/angular-material-extensions/typography","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-material-extensions%2Ftypography","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-material-extensions%2Ftypography/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-material-extensions%2Ftypography/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-material-extensions%2Ftypography/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/angular-material-extensions","download_url":"https://codeload.github.com/angular-material-extensions/typography/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-material-extensions%2Ftypography/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32360116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"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":["angular","extensions","typography"],"created_at":"2025-02-02T03:36:49.197Z","updated_at":"2026-04-27T23:38:26.860Z","avatar_url":"https://github.com/angular-material-extensions.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg height=\"256px\" width=\"256px\" style=\"text-align: center;\" src=\"https://cdn.rawgit.com/angular-material-extensions/text/master/demo/src/assets/logo.svg\"\u003e\n\u003c/p\u003e\n\n# text - Set of angular directives to allow typography manipulation\n\n[![npm version](https://badge.fury.io/js/text.svg)](https://badge.fury.io/js/text),\n[![Build Status](https://travis-ci.org/angular-material-extensions/text.svg?branch=master)](https://travis-ci.org/angular-material-extensions/text)\n[![Coverage Status](https://coveralls.io/repos/github/angular-material-extensions/text/badge.svg?branch=master)](https://coveralls.io/github/angular-material-extensions/text?branch=master)\n[![dependency Status](https://david-dm.org/angular-material-extensions/text/status.svg)](https://david-dm.org/angular-material-extensions/text)\n[![devDependency Status](https://david-dm.org/angular-material-extensions/text/dev-status.svg?branch=master)](https://david-dm.org/angular-material-extensions/text#info=devDependencies)\n[![Greenkeeper Badge](https://badges.greenkeeper.io/angular-material-extensions/text.svg)](https://greenkeeper.io/)\n\n## Demo\n\nView all the directives in action at https://angular-material-extensions.github.io/text\n\n## Dependencies\n* [Angular](https://angular.io) (*requires* Angular 2 or higher, tested with 2.0.0)\n\n## Installation\nInstall above dependencies via *npm*. \n\nNow install `@angular-material-extensions/typography` via:\n```shell\nnpm install --save @angular-material-extensions/typography\n```\n\n---\n##### SystemJS\n\u003e**Note**:If you are using `SystemJS`, you should adjust your configuration to point to the UMD bundle.\nIn your systemjs config file, `map` needs to tell the System loader where to look for `@angular-material-extensions/typography`:\n```js\nmap: {\n  '@angular-material-extensions/typography': 'node_modules/@angular-material-extensions/typography/bundles/text.umd.js',\n}\n```\n---\n\nOnce installed you need to import the main module:\n```js\nimport { MatTextModule } from '@angular-material-extensions/typography';\n```\nThe only remaining part is to list the imported module in your application module. The exact method will be slightly\ndifferent for the root (top-level) module for which you should end up with the code similar to (notice ` MatTextModule .forRoot()`):\n```js\nimport { MatTextModule } from '@angular-material-extensions/typography';\n\n@NgModule({\n  declarations: [AppComponent, ...],\n  imports: [MatTextModule.forRoot(), ...],  \n  bootstrap: [AppComponent]\n})\nexport class AppModule {\n}\n```\n\nOther modules in your application can simply import ` MatTextModule `:\n\n```js\nimport { MatTextModule } from '@angular-material-extensions/typography';\n\n@NgModule({\n  declarations: [OtherComponent, ...],\n  imports: [MatTextModule, ...], \n})\nexport class OtherModule {\n}\n```\n\n## Usage\n\n\n\n## License\n\nCopyright (c) 2018 Anthony Nahas. Licensed under the MIT License (MIT)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangular-material-extensions%2Ftypography","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fangular-material-extensions%2Ftypography","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangular-material-extensions%2Ftypography/lists"}