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 🙏

© 2024 – Pkg Stats / Ryan Hefner

atalias

v0.0.1

Published

at (@) custom aliases for your Next.js projects, without the forward slashes

Downloads

4

Readme

atalias | [ah tah lias] | (@)-alias

at (@) custom aliases for your Next.js projects, without the forward slashes

Why?

When you create an app or website with Next.js, you get the option to add custom import aliases. Before this feature, I've used custom aliases and I've been quite attached to using the at(@)-aliases

Next.js allows you customize this, actually. So you can decide to use any character you like, to represent your custom aliases. The at(@)alias that Next.js provides has a forward-slash in front of it — i have no idea why it is like that,

And I think it is like that, irrespective of the symbol you decide to use. So you get that trailing forward-slash accompanying your import definitions.

So, a typical component that would appear like this, for me, previously:

import SideBar from "@components/sidebar";

Became:

import SideBar from "@/components/sidebar";

I wasn't satisfied. No. I did not like it. I think my issues are just too much. Most of the time, I'd find myself, editing the compilerOptions in tsconfig.jsonjsconfig.json, majority of the time.

Why not automate it? — And here I am. Hopefully, you'd find it useful.

Usage

Install the package with npm, yarn or pnpm, globally

npm install -g atalias

If you're on linux, consider adding the sudo prefix before "npm"

The tool assumes that you have a src folder in your project. To create an alias, you can type the command below into your terminal.

create-atalias src/components

To create multiple aliases at a time, you can do so by making the entries comma-separated like so:

create-atalias src/hooks, src/layouts, src/containers, src/utils

Options

Say you forgot the aliases you have created, and to avoid conflicting aliases, you can list all the aliases you have in the terminal by adding the -l flag to create-atalias like so:

create-atalias -l

Contributing.

See something that doesn't look good? — even in this README, typos fit plenty. Shoot a PR.

LICENSE

MIT © 2023 kaf-lamed-beyt