Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
f71219f0ca | |||
e7e9cb30e7 | |||
dbe0821429 | |||
5500524ce7 |
10
changelog.md
10
changelog.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# 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)
|
## 2025-01-10 - 1.0.2 - fix(documentation)
|
||||||
Updated README and package metadata to reflect antivirus scanning capabilities and usage instructions.
|
Updated README and package metadata to reflect antivirus scanning capabilities and usage instructions.
|
||||||
|
|
||||||
|
19
license
Normal file
19
license
Normal 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.
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartantivirus",
|
"name": "@push.rocks/smartantivirus",
|
||||||
"version": "1.0.2",
|
"version": "1.0.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A Node.js package for integrating antivirus scanning capabilities using ClamAV, allowing in-memory file and data scanning.",
|
"description": "A Node.js package for integrating antivirus scanning capabilities using ClamAV, allowing in-memory file and data scanning.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
```markdown
|
|
||||||
# @push.rocks/smartantivirus
|
# @push.rocks/smartantivirus
|
||||||
|
|
||||||
A package for performing antivirus testing, especially suitable for use with ClamAV.
|
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.
|
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.
|
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
|
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartantivirus',
|
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.'
|
description: 'A Node.js package for integrating antivirus scanning capabilities using ClamAV, allowing in-memory file and data scanning.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user