4 Commits

Author SHA1 Message Date
f71219f0ca 1.0.4
Some checks failed
Default (tags) / security (push) Successful in 39s
Default (tags) / test (push) Failing after 1m18s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-01-10 03:27:14 +01:00
e7e9cb30e7 fix(documentation): Removed redundant conclusion section in readme. 2025-01-10 03:27:13 +01:00
dbe0821429 1.0.3
Some checks failed
Default (tags) / security (push) Successful in 36s
Default (tags) / test (push) Failing after 1m20s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-01-10 03:26:22 +01:00
5500524ce7 fix(readme): Fix formatting errors in the README file for consistent Markdown syntax. 2025-01-10 03:26:22 +01:00
5 changed files with 31 additions and 9 deletions

View File

@ -1,5 +1,15 @@
# Changelog
## 2025-01-10 - 1.0.4 - fix(documentation)
Removed redundant conclusion section in readme.
- Removed the conclusion section from the README file for conciseness.
## 2025-01-10 - 1.0.3 - fix(readme)
Fix formatting errors in the README file for consistent Markdown syntax.
- Removed stray Markdown syntax in README file.
## 2025-01-10 - 1.0.2 - fix(documentation)
Updated README and package metadata to reflect antivirus scanning capabilities and usage instructions.

19
license Normal file
View File

@ -0,0 +1,19 @@
Copyright (c) 2025 Task Venture Capital GmbH (hello@task.vc)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartantivirus",
"version": "1.0.2",
"version": "1.0.4",
"private": false,
"description": "A Node.js package for integrating antivirus scanning capabilities using ClamAV, allowing in-memory file and data scanning.",
"main": "dist_ts/index.js",

View File

@ -1,4 +1,3 @@
```markdown
# @push.rocks/smartantivirus
A package for performing antivirus testing, especially suitable for use with ClamAV.
@ -119,9 +118,3 @@ The tests include creating and utilizing a `ClamAvService` instance and attempts
Beyond scanning strings and buffers, you can implement additional advanced use cases based on your specific application needs, such as integrating into web services or automating file scans in cloud environments. Consider building upon provided functionalities and adapting them to meet the requirements of your application architecture.
With the help of Node.js worker threads or external task queues like RabbitMQ, you can distribute scanning tasks efficiently within high-traffic environments.
### Conclusion
`@push.rocks/smartantivirus` provides a simple yet effective way to incorporate antivirus checks into your Node.js applications, leveraging the robust ClamAV engine. With features like in-memory scanning and connection verification, you can seamlessly ensure your data security solutions are integrated into your application lifecycle.
```
undefined

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartantivirus',
version: '1.0.2',
version: '1.0.4',
description: 'A Node.js package for integrating antivirus scanning capabilities using ClamAV, allowing in-memory file and data scanning.'
}