GitHunt
PH

phuctm97/aiyear

Get the current year using AI. Let AI update your website's footer so that your team can focus on more important things.

aiyear

Get the current year using AI.

Let AI update your website's footer so that your team can focus on more important things.

Installation

npm install aiyear

Usage

// Without AI (boring)
const year = new Date().getFullYear();
// => 2026 

// With AI (the future)
import { aiYear } from "aiyear";
import { openai } from "@ai-sdk/openai";

const year = await aiYear({ model: openai("gpt-4o") });
// => 2026 (but with more carbon emissions)

Supported Models

This package uses the AI SDK, so you can use any supported provider:

// OpenAI
import { openai } from "@ai-sdk/openai";
aiYear({ model: openai("gpt-4o") });

// Anthropic
import { anthropic } from "@ai-sdk/anthropic";
aiYear({ model: anthropic("claude-3-5-sonnet-20241022") });

// Google
import { google } from "@ai-sdk/google";
aiYear({ model: google("gemini-1.5-pro") });

// And many more...

Comparison

Method Time Cost Carbon Footprint
new Date().getFullYear() ~0.001ms Free None
aiYear({ model: gpt4o }) ~500ms $0.0001 Yes

License

MIT

Languages

JavaScript100.0%

Contributors

Created January 1, 2026
Updated January 2, 2026
phuctm97/aiyear | GitHunt