ormy

0.4.1 • Public • Published

Ormy

NPM Version Downloads Build Status Code Coverage Dependencies Support

Ormy is a Node.js Object Relational Mapping library. It currently supports MySQL and SQLite.

Quick Start

Get a new database connection for one of the supported adapters.

var db = require('ormy')(
  adapter: 'mysql',
  host: 'localhost'
  port: 3306,
  user: 'root',
  pass: 'MY_PASSWORD',
  name: 'MY_DATABASE'
});

Define a model.

var User = db.define({
  table: 'users',
  fields: {
    email: 'string',
    firstName: 'string',
    lastName: 'string'
  },
  methods: {
    hello: function () {
      return 'Hello, ' + this.firstName + '!';
    }
  }
});
 
User.create({
  email: 'ormy@lighter.io',
  firstName: 'Ormy',
  lastName: 'Team'
}, function (err, item) {
  console.log('Created item: ', item);
});
 
User.create([{
  email: 'ormy@lighter.io',
  firstName: 'Ormy',
  lastName: 'Team'
}, {
  email: 'ligher@lighter.io',
  firstName: 'Lighter',
  lastName: 'Team'
}], function (err, items) {
  console.log('Created array of items: ', items);
});
 
User.get(1, function (err, item) {
  console.log('User with ID 1: ', item);
});
 
User.get({email: 'ormy@lighter.io'}, function (err, item) {
  console.log('User with Ormy Email: ', item);
});
 
User.find({lastName: "Team"}, function (err, items) {
  console.log('"Team" users: ', items);
  items.forEach(function (item) {
    item.lastName = 'Core';
    item.save();
  })
});

Acknowledgements

We would like to thank all of the amazing people who use, support, promote, enhance, document, patch, and submit comments & issues. Ormy couldn't exist without you.

Additionally, huge thanks go to Goin’ for employing and supporting Ormy project maintainers, and for being an epically awesome place to work (and play).

MIT License

Copyright (c) 2014 Sam Eubank

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.

How to Contribute

We welcome contributions from the community and are happy to have them. Please follow this guide when logging issues or making code changes.

Logging Issues

All issues should be created using the new issue form. Please describe the issue including steps to reproduce. Also, make sure to indicate the version that has the issue.

Changing Code

Code changes are welcome and encouraged! Please follow our process:

  1. Fork the repository on GitHub.
  2. Fix the issue ensuring that your code follows the style guide.
  3. Add tests for your new code, ensuring that you have 100% code coverage. (If necessary, we can help you reach 100% prior to merging.)
    • Run npm test to run tests quickly, without testing coverage.
    • Run npm run cover to test coverage and generate a report.
    • Run npm run report to open the coverage report you generated.
  4. Pull requests should be made to the master branch.

Contributor Code of Conduct

As contributors and maintainers of Ormy, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.

If any participant in this project has issues or takes exception with a contribution, they are obligated to provide constructive feedback and never resort to personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, edits, issues, and other contributions that are not aligned with this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.

We promise to extend courtesy and respect to everyone involved in this project regardless of gender, gender identity, sexual orientation, ability or disability, ethnicity, religion, age, location, native language, or level of experience.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.4.1
    2
    • latest

Version History

Package Sidebar

Install

npm i ormy

Weekly Downloads

4

Version

0.4.1

License

MIT

Last publish

Collaborators

  • zerious