Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ember-faker
Advanced tools
Ember addon wrapper for Faker.js.
ember install ember-faker
ember install:addon ember-faker
Import the faker module with import faker from 'faker'
. Then you can use it as a default
value for dummy data:
import faker from 'faker';
export default DS.Model.extend({
firstName: DS.attr('string', {
defaultValue: function() {
return faker.name.firstName();
}
})
});
Or manually set attributes for tests or prototypes:
import faker from 'faker';
// ...
user.set('firstName', faker.name.firstName());
user.set('lastName', faker.name.lastName());
By default faker is included into your build for non-production environments. To include it in production, add this to your config:
// ember-cli-build.js
let app = new EmberApp(defaults, {
'ember-faker': {
enabled: EmberApp.env === 'production'
}
});
git clone
this repositorynpm install
bower install
ember server
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
MIT
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Crafted with <3 by John Otander (@4lpine).
FAQs
Include fake data in your app for testing or prototyping.
We found that ember-faker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.