Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brionmario/say-hola
A lightweight simple library that says hello to you in multiple languages.
https://github.com/brionmario/say-hola
Last synced: about 5 hours ago
JSON representation
A lightweight simple library that says hello to you in multiple languages.
- Host: GitHub
- URL: https://github.com/brionmario/say-hola
- Owner: brionmario
- License: mit
- Created: 2023-12-28T15:23:21.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-02T18:35:04.000Z (4 months ago)
- Last Synced: 2024-10-06T06:55:06.629Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://brionmario.github.io/say-hola/
- Size: 2.16 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Say Hola
This monorepo contains two packages: `say-hola` and `say-hola-react`. These packages provide flexible and lightweight libraries for displaying greetings in different languages.
## Packages
- **say-hola**: Core library for generating greetings.
- **say-hola-react**: React components and hooks based on `say-hola`.## Installation
To install the dependencies for all packages, run:
```sh
pnpm install
```### Using `say-hola`
`say-hola` is a lightweight library for generating greetings in different languages.
#### Example
```javascript
const SayHola = require('say-hola');const sayHola = new SayHola();
const greeting = sayHola.greet();
console.log(greeting);
```### Using `say-hola-react`
`say-hola-react` is a flexible React component and hook library based on `say-hola`.
#### Example
```jsx
import React from 'react';
import SayHola from 'say-hola-react';const App = () => {
return (
);
};export default App;
```## Contributing
Please see our [CONTRIBUTING.md](CONTRIBUTING.md) file for detailed instructions on how to contribute to this project.
## 👨💻 Contributors
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.