
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@nightcycle/midas
Advanced tools
Turn every game you touch to gold with a comprehensive analytics suite.
This is a package for the easy tracking and validation of analytics data. The goal is to allow you to track as much data as you want, so you can focus on solving problems with the data, rather than just storing and collecting it in the first place.
To seamlessly integrate into the most common standards of data processing workflows, Midas has pivoted away from a free structured tree of data to that of tables.
Midas.init()
Midas.ProjectId = "abcdef1234567"
One solution I personally use is MongoDB Atlas. You can read how to set that up here, remember to enabled the "Data API" under the "Services" menu. MongoDB offers a terabyte of storage at a reasonable price. To get the data out there are also many official MongoDB tools and solutions for that as well.
local mongoDB = Midas.StorageProviders.MongoDB.new(
"api-key-123",
"https://us-east-2.aws.data.mongodb-api.com/app/data-abcdef"
)
mongoDB.DebugPrintEnabled = RunService:IsStudio()
Midas:SetOnBatchInsertInvoke(
function(
projectId: string,
dataSetId: string,
dataTableId: string,
dataList: { [number]: { [string]: unknown } },
format: { [string]: DataType },
onPayloadSizeKnownInvoke:(number) -> ()
): boolean
return mongoDB:InsertMany(
projectId,
dataSetId,
dataTableId,
dataList,
format,
onPayloadSizeKnownInvoke
)
end
)
-- midas accepts the rowData as a variadic type, allowing you to have type safety when recording data
type RowData = {
server_id: string,
session_id: string,
timestamp: DateTime,
user_id: number,
is_premium: boolean,
friends_in_game: number?,
pos_x: number?,
pos_y: number?,
}
-- level of organization for datatables
local dataSet = Midas:CreateDataSet("UserData", "abc123")
-- a table with rows and columns
local dataTable = dataSet:CreateDataTable("Session", "def456") :: Midas.DataTable<RowData>
dataTable:AddColumn("server_id", "String", false)
dataTable:AddColumn("session_id", "String", false)
dataTable:AddColumn("timestamp", "Date", false)
dataTable:AddColumn("user_id", "Int64", false)
dataTable:AddColumn("friends_in_game", "Int32", true)
dataTable:AddColumn("is_premium", "boolean", false)
dataTable:AddColumn("pos_x", "Double", true)
dataTable:AddColumn("pos_z", "Double", true)
local playerPosition: Vector3?
dataTable:AddRow({
server_id = game.JobId,
session_id = "abc-123",
timestamp = DateTime.now(),
user_id = 123456,
is_premium = true,
friends_in_game = nil,
pos_x = if playerPosition then playerPosition.X else nil,
pos_z = if playerPosition then playerPosition.Z else nil,
})
If you want to post all tables at once you can
Midas:Post(50, 400, 1, false)
Otherwise if you want to post a specific table that is available as well.
dataTable:Post(50, 400)
If you just want to forget about posting, you can tell Midas to try to manage it for you.
Midas:Automate(RunService:IsStudio())
FAQs
Turn every game you touch to gold with a comprehensive analytics suite.
We found that @nightcycle/midas demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.