Giter Club home page Giter Club logo

cowtranslator.js's Introduction

CowTranslator.js ๐Ÿ„

JavaScript library to translate cow language ๐Ÿ„ to text

jsDelivr

<script src="https://cdn.jsdelivr.net/gh/SkwalExe/[email protected]/dist/cow-translator.min.js"></script>

NPM module

Install the npm module

npm install cow-translator

And import it in your project

const cowTranslator = require('cow-translator');

Setting up

You can import the library into you website with JsDelivr or, you can use the npm module and import it in your project.

Usage ๐Ÿ“

This library provides 2 functions:

  • cowTranslator.cowToText : translate cow language to text
  • cowTranslator.textToCow : translate text to cow language

Each of these functions returns a translationResult class :

  • translationResult.text : the human version
  • translationResult.cow : the cow version
  • translationResult.error : the error message if any
  • translationResult.success : whether the translation was successful or not
  • translationResult.warning : whether warnings were generated or not

Human to cow

Translate Hello World ! to cow language

let cow = cowTranslator.textToCow("Hello world !");

.cow is the cow version of the text

cow.cow // "mOoOoOO moooOoo mooOoOO mooOoOO mooOOOo mOOOOOo moOoOOo mooOOOo moOoooO mooOoOO mooooOO mOOOOOo MoooooO"

The translation is successful

cow.success // true

Cow to human

Translate "mOoOoOO moooOoo mooOoOO mooOoOO mooOOOo mOOOOOo" to human language

let human = cowTranslator.cowToText("mOoOoOO moooOoo mooOoOO mooOoOO mooOOOo mOOOOOo");

.text is the human version

human.text // "Hello"

Errors and warnings

If an error occured and the translation was not successful, the following properties are set:

  • translationResult.success : โ›” false
  • translationResult.error : the error message

If warnings were generated, the following properties are set:

  • translationResult.warning : โš ๏ธ true
  • translationResult.error : the warning message
  • translationResult.success : โœ… true

final

If you have any problem, don't hesitate to open an issue

Contributing

  1. Start by forking this repository

  2. Then clone your fork to your local machine.

git clone https://github.com/your-username/cowTranslator.js.git
  1. Install dev dependencies
npm install --save-dev
  1. Create a new branch
git checkout -b super-cool-feature
  1. Then make your changes

  2. Update the changelog and version number if needed (using Semantic Versioning)

# bug fix
npm version patch --no-git-tag-version

# add a new feature 
npm version minor --no-git-tag-version

# changes that break backwards compatibility
npm version major --no-git-tag-version
  1. List and correct linting errors
npm run lint
  1. Update the minified/browser version of the library
npm run build
  1. Once you're done, commit your changes and push them to the remote repository.
git add --all
git commit -m "Add super-cool-feature"
git push origin super-cool-feature
  1. Then, open a pull request on GitHub from your fork.
    1. Go to this link
    2. Click compare across forks
    3. On the right, on head repository select your fork
    4. And on compare select the branch you just created
    5. Click on Create Pull Request and submit your pull request

cowtranslator.js's People

Contributors

dependabot[bot] avatar imgbot[bot] avatar skwalexe avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

larry3d

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.