npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@freelang/stdlib

v2.9.1

Published

FreeLang Standard Library - 1,500+ built-in functions

Readme

@freelang/stdlib

FreeLang 표준 라이브러리 - 1,500+ 빌트인 함수

설치

npm install @freelang/stdlib

포함된 모듈

문자열 처리

  • string_upper() - 대문자 변환
  • string_lower() - 소문자 변환
  • string_split() - 문자열 분할
  • string_replace() - 문자열 치환

수학 함수

  • math_sin(), math_cos() - 삼각 함수
  • math_sqrt() - 제곱근
  • math_abs() - 절댓값

파일 I/O

  • file_read() - 파일 읽기
  • file_write() - 파일 쓰기
  • file_delete() - 파일 삭제

네트워크

  • http_get() - HTTP GET 요청
  • http_post() - HTTP POST 요청
  • http_server() - HTTP 서버 생성

데이터베이스

  • db_open() - 데이터베이스 열기
  • db_query() - SQL 쿼리 실행
  • db_insert() - 데이터 삽입

비동기

  • async_sleep() - 비동기 대기
  • async_parallel() - 병렬 실행
  • async_map() - 비동기 맵

사용 예제

import { string_upper, http_get } from @freelang/stdlib

fn main() {
    let msg = "hello"
    println(string_upper(msg))  // "HELLO"

    let response = http_get("https://api.example.com/data")
    println(response)
}

함수 목록

전체 함수 목록은 API 문서를 참고하세요.

자세한 정보: https://github.com/freelang-io/freelang-compiler