@jd-data-limited/easy-fm
Version:
easy-fm is a Node.js module that allows you to interact with a [FileMaker database stored](https://www.claris.com/filemaker/) on a [FileMaker server](https://www.claris.com/filemaker/server/). This module interacts with your server using the [FileMaker
18 lines (17 loc) • 512 B
JavaScript
/*
* Copyright (c) 2024. See LICENSE file for more information
*/
import { Command } from 'commander';
import { generateTypesCLI } from './generateTypes.js';
const program = new Command();
program
.name('easyfm')
.description('A NodeJS wrapper for the FileMaker Data CLI');
program
.command('generate-types')
.description('Automatically generate layout interfaces from your database')
.action(async () => {
await generateTypesCLI();
});
program.parse(process.argv);