smartmatch/readme.md

106 lines
5.0 KiB
Markdown
Raw Normal View History

2024-04-14 15:57:41 +00:00
# @push.rocks/smartmatch
2020-02-25 18:34:29 +00:00
a minimal matching library using picomatch
2024-04-14 15:57:41 +00:00
## Install
To install `@push.rocks/smartmatch`, you'll need Node.js and npm installed on your development machine. If you have those set up, installing `@push.rocks/smartmatch` is as simple as running the following command in your terminal:
```bash
npm install @push.rocks/smartmatch --save
```
This will add `@push.rocks/smartmatch` to your project's dependencies and you're ready to start using it in your application.
2020-02-25 18:34:29 +00:00
## Usage
2024-04-14 15:57:41 +00:00
Using `@push.rocks/smartmatch` is straightforward. The library is designed to provide a minimal yet powerful matching functionality leveraging the `picomatch` library. The core functionality revolves around matching strings against a provided wildcard pattern. Its especially useful for scenarios where theres a need to filter names, file paths, or any strings based on wildcard patterns (similar to the glob patterns).
### Getting Started with @push.rocks/smartmatch
Firstly, ensure that you import `@push.rocks/smartmatch` into your project:
```typescript
import { SmartMatch } from '@push.rocks/smartmatch';
```
### Creating a Matcher Instance
The `SmartMatch` class is the entry point to the library's functionality. You create an instance of `SmartMatch` by providing a wildcard pattern to its constructor. This pattern will be used for matching against the strings.
Heres an example:
```typescript
const myMatcher = new SmartMatch('*.ts');
```
This matcher will be used to determine if a given string matches the wildcard pattern `*.ts`, meaning it should end with `.ts`.
### Matching Strings
To match a string against the pattern, use the `match` method on your `SmartMatch` instance. This method takes a string as an argument and returns a boolean indicating whether the string matches the pattern.
Example usage:
```typescript
// Assuming myMatcher is instantiated with '*.ts' as shown above.
const fileName = 'example.ts';
if (myMatcher.match(fileName)) {
console.log(`${fileName} matches the pattern!`);
} else {
console.log(`${fileName} does not match the pattern.`);
}
```
### Advanced Use Cases
`@push.rocks/smartmatch` is designed to be minimal, but you can create multiple instances of `SmartMatch` with different patterns to support more complex matching logic in your application. This is particularly useful for applications that deal with various types of files, names, or identifiers that follow different naming conventions.
For example:
```typescript
const scriptMatcher = new SmartMatch('*.js');
const typeScriptMatcher = new SmartMatch('*.ts');
const checkFileType = (fileName: string) => {
if (scriptMatcher.match(fileName)) {
console.log(`${fileName} is a JavaScript file.`);
} else if (typeScriptMatcher.match(fileName)) {
console.log(`${fileName} is a TypeScript file.`);
} else {
console.log(`${fileName} is of an unknown type.`);
}
};
// Test the function
checkFileType('test.js'); // Output: test.js is a JavaScript file.
checkFileType('module.ts'); // Output: module.ts is a TypeScript file.
checkFileType('image.png'); // Output: image.png is of an unknown type.
```
This makes `@push.rocks/smartmatch` a versatile library suitable for various applications that require simple yet efficient matching logic.
### Conclusion
`@push.rocks/smartmatch` offers an elegant solution for matching strings against wildcard patterns. Whether you are developing a file utility tool, a project management app, or any software that needs to filter or categorize data based on naming patterns, `@push.rocks/smartmatch` could be the library you need. Its simplicity and effectiveness make it a valuable tool for developers looking for a minimal matching library.
## License and Legal Information
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
2020-02-25 18:34:29 +00:00
2024-04-14 15:57:41 +00:00
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
2020-02-25 18:34:29 +00:00
2024-04-14 15:57:41 +00:00
### Company Information
2020-02-25 18:34:29 +00:00
2024-04-14 15:57:41 +00:00
Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany
2020-02-25 18:34:29 +00:00
2024-04-14 15:57:41 +00:00
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
2020-02-25 18:34:29 +00:00
2024-04-14 15:57:41 +00:00
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.