soren-of-sdk
Version:
A sample npm package that provides a greeting function.
37 lines (21 loc) • 721 B
Markdown
# My NPM Package
This is a sample npm package that demonstrates how to create and publish a simple TypeScript library.
## Installation
To install the package, run the following command:
```
npm install my-npm-package
```
## Usage
After installing the package, you can import and use the `sampleFunction` in your project as follows:
```typescript
import { sampleFunction } from 'my-npm-package';
console.log(sampleFunction());
```
## API
### sampleFunction
Returns a greeting message.
**Returns:** `string` - A greeting message.
## Contributing
If you would like to contribute to this project, please fork the repository and submit a pull request.
## License
This project is licensed under the MIT License.