@profullstack/fasting
Version:
A comprehensive CLI and Node.js module for 16:8 intermittent fasting with meal tracking, weight monitoring, and fast history with visual charts
24 lines (22 loc) • 633 B
JavaScript
import { logMeal, logDrink, getTodaysEntries, getCalorieHistory } from './fasting.js';
import { logWeight, getWeightHistory } from './weight.js';
import { startFast, endFast, getCurrentFast, getFastHistory, getAllFasts, getFastStats } from './fast.js';
import { logExercise, getTodaysExercises, getExerciseHistory, getAllExercises } from './exercise.js';
export {
logMeal,
logDrink,
getTodaysEntries,
getCalorieHistory,
logWeight,
getWeightHistory,
startFast,
endFast,
getCurrentFast,
getFastHistory,
getAllFasts,
getFastStats,
logExercise,
getTodaysExercises,
getExerciseHistory,
getAllExercises
};