{"id":20762027,"url":"https://github.com/donkeyclip/motorcortex-typewriting","last_synced_at":"2025-04-30T06:28:41.492Z","repository":{"id":38383571,"uuid":"229741533","full_name":"donkeyclip/motorcortex-typewriting","owner":"donkeyclip","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-14T04:36:08.000Z","size":15001,"stargazers_count":0,"open_issues_count":16,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-14T05:33:37.552Z","etag":null,"topics":["motorcortex","motorcortex-plugin","typewriter-effect"],"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/donkeyclip.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","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":"2019-12-23T11:45:24.000Z","updated_at":"2023-01-31T17:47:47.000Z","dependencies_parsed_at":"2023-12-16T01:30:25.062Z","dependency_job_id":"3a18c1e8-254b-4b58-9315-c9d3c364d3b2","html_url":"https://github.com/donkeyclip/motorcortex-typewriting","commit_stats":{"total_commits":626,"total_committers":14,"mean_commits":"44.714285714285715","dds":0.3945686900958466,"last_synced_commit":"6ea52bfa38fd1be343eae0a497138ab1bf60730f"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donkeyclip%2Fmotorcortex-typewriting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donkeyclip%2Fmotorcortex-typewriting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donkeyclip%2Fmotorcortex-typewriting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donkeyclip%2Fmotorcortex-typewriting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/donkeyclip","download_url":"https://codeload.github.com/donkeyclip/motorcortex-typewriting/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251653590,"owners_count":21622155,"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","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":["motorcortex","motorcortex-plugin","typewriter-effect"],"created_at":"2024-11-17T10:28:45.778Z","updated_at":"2025-04-30T06:28:41.466Z","avatar_url":"https://github.com/donkeyclip.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MotorCortex-TypeWriting\n\n**Table of Contents**\n\n- [MotorCortex-TypeWriting](#motorcortex-typewriting)\n  - [Demo](#demo)\n- [Intro / Features](#intro--features)\n- [Getting Started](#getting-started)\n  - [Installation](#installation)\n  - [Importing and Loading](#importing-and-loading)\n- [Creating Incidents](#creating-incidents)\n  - [TypeWriting](#typewriting)\n- [Adding Incidents in your clip](#adding-incidents-in-your-clip)\n- [Contributing](#contributing)\n- [License](#license)\n- [Sponsored by](#sponsored-by)\n\n## Demo\n[Check it out here](https://donkeyclip.github.io/motorcortex-typewriting/demo/)\n\n# Intro / Features\nMotorCortex-TypeWriting, adds the type-writing effect to your clips.\n\nThis Plugin exposes one incidents:\n- TypeWriting\n\n# Getting Started\n## Installation\n\n```bash\n$ npm install @donkeyclip/motorcortex-typewriting\n# OR\n$ yarn add @donkeyclip/motorcortex-typewriting\n```\n\n## Importing and loading\n```javascript\nimport { loadPlugin } from \"@donkeyclip/motorcortex\";\nimport TypeWritingDefinition from \"@donkeyclip/motorcortex-typewriting\";\nconst TypeWriting = loadPlugin(TypeWritingDefinition);\n```\n\n# Creating Incidents\n## TypeWriting\n```javascript\nconst typewrite = new TypeWriting.TypeWriting(\n  {\n    css: `color:#37ff00;font-size:20px;font-weight:bold`,\n    showCursor: true,\n    cursorCss: \"color:#37ff00;font-size:20px;font-weight:bold;\",\n    blinkDelay: 3000,\n    blinkhiatus: 2000,\n    text: `Wake up, Neo...`,\n  },\n  { selector: \".container\" }\n);\n\nconst typewriteOne = new TypeWriting.TypeWriting(\n  {\n    css: `color:#37ff00;font-size:20px;font-weight:bold`,\n    showCursor: true,\n    cursorCss: \"color:#37ff00;font-size:20px;font-weight:bold;\",\n    blinkDelay: 3000,\n    blinkhiatus: 2000,\n    text: `The Matrix has you...`,\n  },\n  { selector: \".container\" }\n);\n```\n\n### TypeWriting Attrs\n\n| Name        | Description                                               | Default |    Type |\n| ----------- | :-------------------------------------------------------- | :------ | ------: |\n| css         | The CSS for the text                                      | \"\"      |  string |\n| cursorCss   | The CSS for the cursor                                    | \"\"      |  string |\n| showCursor  | Show or hide cursor                                       | false   | boolean |\n| blinkDelay  | Blink cursor duration in milliseconds before start typing | 0       |  number |\n| blinkhiatus | Blink cursor duration in milliseconds after end of typing | 0       |  number |\n| text        | The text to be typed                                      | \"\"      |  string |\n# Adding Incidents in your clip\n\n```javascript\nclipName.addIncident(incidentName,startTime);\n```\n\n# Contributing \n\nIn general, we follow the \"fork-and-pull\" Git workflow, so if you want to submit patches and additions you should follow the next steps:\n1.\t**Fork** the repo on GitHub\n2.\t**Clone** the project to your own machine\n3.\t**Commit** changes to your own branch\n4.\t**Push** your work back up to your fork\n5.\tSubmit a **Pull request** so that we can review your changes\n\n# License\n\n[MIT License](https://opensource.org/licenses/MIT)\n\n# Sponsored by\n[\u003cimg src=\"https://presskit.donkeyclip.com/logos/donkey%20clip%20logo.svg\" width=250\u003e\u003c/img\u003e](https://donkeyclip.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonkeyclip%2Fmotorcortex-typewriting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdonkeyclip%2Fmotorcortex-typewriting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonkeyclip%2Fmotorcortex-typewriting/lists"}