Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix esm #22

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/migrate.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FSRS, FSRSItem, FSRSReview } from '../index'
import { FSRS, FSRSItem, FSRSReview } from '../index.js'

function migrateWithFullHistory() {
// Create a new FSRS model
Expand Down
2 changes: 1 addition & 1 deletion examples/optimize.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FSRSItem, FSRSReview, DEFAULT_PARAMETERS, FSRS } from '../index'
import { FSRSItem, FSRSReview, DEFAULT_PARAMETERS, FSRS } from '../index.js'

function main() {
// Create review histories for cards
Expand Down
321 changes: 321 additions & 0 deletions index.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,321 @@
/* tslint:disable */
/* eslint-disable */
/* prettier-ignore */

/* auto-generated by NAPI-RS */

const { existsSync, readFileSync } = require('fs')
const { join } = require('path')

const { platform, arch } = process

let nativeBinding = null
let localFileExisted = false
let loadError = null

function isMusl() {
// For Node 10
if (!process.report || typeof process.report.getReport !== 'function') {
try {
const lddPath = require('child_process').execSync('which ldd').toString().trim()
return readFileSync(lddPath, 'utf8').includes('musl')
} catch (e) {
return true
}
} else {
const { glibcVersionRuntime } = process.report.getReport().header
return !glibcVersionRuntime
}
}

switch (platform) {
case 'android':
switch (arch) {
case 'arm64':
localFileExisted = existsSync(join(__dirname, 'fsrs-rs-nodejs.android-arm64.node'))
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.android-arm64.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-android-arm64')
}
} catch (e) {
loadError = e
}
break
case 'arm':
localFileExisted = existsSync(join(__dirname, 'fsrs-rs-nodejs.android-arm-eabi.node'))
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.android-arm-eabi.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-android-arm-eabi')
}
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on Android ${arch}`)
}
break
case 'win32':
switch (arch) {
case 'x64':
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.win32-x64-msvc.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.win32-x64-msvc.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-win32-x64-msvc')
}
} catch (e) {
loadError = e
}
break
case 'ia32':
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.win32-ia32-msvc.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.win32-ia32-msvc.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-win32-ia32-msvc')
}
} catch (e) {
loadError = e
}
break
case 'arm64':
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.win32-arm64-msvc.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.win32-arm64-msvc.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-win32-arm64-msvc')
}
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on Windows: ${arch}`)
}
break
case 'darwin':
localFileExisted = existsSync(join(__dirname, 'fsrs-rs-nodejs.darwin-universal.node'))
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.darwin-universal.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-darwin-universal')
}
break
} catch {}
switch (arch) {
case 'x64':
localFileExisted = existsSync(join(__dirname, 'fsrs-rs-nodejs.darwin-x64.node'))
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.darwin-x64.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-darwin-x64')
}
} catch (e) {
loadError = e
}
break
case 'arm64':
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.darwin-arm64.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.darwin-arm64.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-darwin-arm64')
}
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on macOS: ${arch}`)
}
break
case 'freebsd':
if (arch !== 'x64') {
throw new Error(`Unsupported architecture on FreeBSD: ${arch}`)
}
localFileExisted = existsSync(join(__dirname, 'fsrs-rs-nodejs.freebsd-x64.node'))
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.freebsd-x64.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-freebsd-x64')
}
} catch (e) {
loadError = e
}
break
case 'linux':
switch (arch) {
case 'x64':
if (isMusl()) {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-x64-musl.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-x64-musl.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-x64-musl')
}
} catch (e) {
loadError = e
}
} else {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-x64-gnu.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-x64-gnu.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-x64-gnu')
}
} catch (e) {
loadError = e
}
}
break
case 'arm64':
if (isMusl()) {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-arm64-musl.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-arm64-musl.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-arm64-musl')
}
} catch (e) {
loadError = e
}
} else {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-arm64-gnu.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-arm64-gnu.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-arm64-gnu')
}
} catch (e) {
loadError = e
}
}
break
case 'arm':
if (isMusl()) {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-arm-musleabihf.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-arm-musleabihf.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-arm-musleabihf')
}
} catch (e) {
loadError = e
}
} else {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-arm-gnueabihf.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-arm-gnueabihf.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-arm-gnueabihf')
}
} catch (e) {
loadError = e
}
}
break
case 'riscv64':
if (isMusl()) {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-riscv64-musl.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-riscv64-musl.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-riscv64-musl')
}
} catch (e) {
loadError = e
}
} else {
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-riscv64-gnu.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-riscv64-gnu.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-riscv64-gnu')
}
} catch (e) {
loadError = e
}
}
break
case 's390x':
localFileExisted = existsSync(
join(__dirname, 'fsrs-rs-nodejs.linux-s390x-gnu.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./fsrs-rs-nodejs.linux-s390x-gnu.node')
} else {
nativeBinding = require('fsrs-rs-nodejs-linux-s390x-gnu')
}
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on Linux: ${arch}`)
}
break
default:
throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`)
}

if (!nativeBinding) {
if (loadError) {
throw loadError
}
throw new Error(`Failed to load native binding`)
}

const { FSRS, DEFAULT_PARAMETERS, FSRSReview, FSRSItem, MemoryState, NextStates, ItemState } = nativeBinding

module.exports.FSRS = FSRS
module.exports.DEFAULT_PARAMETERS = DEFAULT_PARAMETERS
module.exports.FSRSReview = FSRSReview
module.exports.FSRSItem = FSRSItem
module.exports.MemoryState = MemoryState
module.exports.NextStates = NextStates
module.exports.ItemState = ItemState
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
export const DEFAULT_PARAMETERS: number[]
export declare class FSRS {
constructor()
constructor(parameters?: Array<number> | undefined | null)
computeParameters(trainSet: Array<FSRSItem>): Array<number>
nextStates(currentMemoryState: MemoryState | undefined | null, desiredRetention: number, daysElapsed: number): NextStates
benchmark(trainSet: Array<FSRSItem>): Array<number>
Expand Down
Loading
Loading