한 줄의 코드도 작성하지 않고 스키마에서 방대한 양의 모의 데이터 생성
2457 단어 mockdataapijavascriptfakerjs
이 소프트웨어가 정말 빠르다고 말했습니까? 대부분의 경우 15초 이내에 100만 개의 레코드를 생성할 수 있습니다.
다음과 같이 스키마에서 자동 증분 값을 사용할 수도 있습니다.
//schema.mjs
export default {
// random 20 people with autoincrement id
output:'./output.json',
total:20,
structure:{
id:'autoIncrement',
firstName: 'maleFirstName',
lastName: 'maleLastName',
email:'emailFromDomain,firstName,lastName,test.com',
fullName:'joinerSpace,firstName,lastName',
}
}
github 리포지토리는 https://github.com/hasinhayder/fake-data-generator-from-schema에 있으며
example-schemas
디렉터리에서 몇 가지 예제 스키마를 찾을 수 있습니다.pull 요청, 기능 제안 및 문제는 매우 환영합니다.
Reference
이 문제에 관하여(한 줄의 코드도 작성하지 않고 스키마에서 방대한 양의 모의 데이터 생성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hasinhayder/create-huge-amount-of-mock-data-from-schema-without-writing-a-single-line-of-code-47jn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)