···11-# MorphLite
11+# Morphlex
2233-Morphlite is an attempt to create a DOM morphing function in less than 100 lines of code with no runtime dependencies, to use with [HTMZ](https://leanrada.com/htmz/) in small projects. It is still very much a work-in-progress.
33+Morphlex is an attempt to create a DOM morphing function in less than 100 lines of code with no runtime dependencies, to use with [HTMZ](https://leanrada.com/htmz/) in small projects. It is still very much a work-in-progress.
4455## Why are we doing this?
66···16161717## Current status
18181919-We have a basic sketch of the morphing function in `src/morphlite.ts` that can handle simple cases. Now, we’re copying tests from [Morphdom](https://github.com/patrick-steele-idem/morphdom), [Idiomorph](https://github.com/bigskysoftware/idiomorph), [Alpine Morph](https://github.com/alpinejs/alpine/tree/main/packages/morph), and [nanomorph](https://github.com/choojs/nanomorph).
1919+We have a basic sketch of the morphing function in `src/morphlex.ts` that can handle simple cases. Now, we’re copying tests from [Morphdom](https://github.com/patrick-steele-idem/morphdom), [Idiomorph](https://github.com/bigskysoftware/idiomorph), [Alpine Morph](https://github.com/alpinejs/alpine/tree/main/packages/morph), and [nanomorph](https://github.com/choojs/nanomorph).
20202121## Run tests
2222···2727## Usage
28282929```javascript
3030-import { morph } from "morphlite";
3030+import { morph } from "morphlex";
31313232morph(currentNode, guideNode);
3333```
···11{
22- "name": "morphlite",
22+ "name": "morphlex",
33 "version": "0.0.1",
44- "description": "Morphlite is an attempt to create a DOM morphing function in less than 100 lines of code to use with [HTMZ](https://leanrada.com/htmz/) in small projects.",
55- "main": "dist/morphlite.js",
66- "types": "dist/morphlite.d.ts",
44+ "description": "Morphlex is an attempt to create a DOM morphing function in less than 100 lines of code.",
55+ "main": "dist/morphlex.js",
66+ "types": "dist/morphlex.d.ts",
77 "scripts": {
88 "test": "web-test-runner test/**/*.test.js --node-resolve",
99 "build": "tsc",