import-alias-file
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

v2.0.0 Breaking Changes

Import Alias File has received some upgrades and some of the old code has become obsolete and no longer useful

// Change all instances of this line
const lookFile = require("import-alias-file");
// to the new lookFile method
const { lookFile } = require("import-alias-file");

Pre-requisites

You will need NodeJS installed in your machine/project in order to load both the path and fs libraries.

npm i node

Install

npm i import-alias-file

Description

This npm library eases the process of importing files within a nodejs project. The way it works it's similar to NextJS!.

I made it after getting tired of using ../ multiple times when I needed to use a function that was placed in a different file!

Usage

const express = require("express");

// const lookFile = require("import-alias-file");
const { lookFile } = require("import-alias-file");

const { getBlogs, getBlog, createBlog } = lookFile("@/controllers/blogs"); // <- That
// Instead of this, require('../../../../controllers/blogs');

const Blog = lookFile("@/models/Blog"); // <- That
// Instead of this, require('../../../models/Blog);

const router = express.Router();

router.route("/").get(getBlogs).post(createBlog);

router.route("/:id").get(getBlog);

module.exports = router;

Extensions

You can specify the file extension as well.

// This is the same
const { getBlogs, getBlog, createBlog } = lookFile("@/controllers/blogs");
const Blog = lookFile("@/models/Blog");
// as this
const { getBlogs, getBlog, createBlog } = lookFile("@/controllers/blogs.js");
const Blog = lookFile("@/models/Blog.js");

The extensions supported so far are .js, .json, and .ts.

Community

The import-alias-file community can be found on GitHub Discussions where you can ask questions and voice ideas.

Import-Alias-File Author

Support Me.

Dude, I'm broke. If you find this useful, please don't hesitate to help me maintain it!.

Contributing

This library is still too young. I accept any help you guys can provide. The goal is to make the functionality NextJS uses into NodeJS. Please feel free to share your knowledge!

Hire Me

I'm available to work with you guys. If you need a developer who specializes in MongoDB, Express, ReactJS/NextJS, NodeJS, Php and MySQL, then I'm you're guy!. Reach out to me at kuaf1998@gmail.com.

You can also check my portfolio at my personal blog.

Contributors

A list of co-authors that have helped improve this amazing library!

All Contributors

Package Sidebar

Install

npm i import-alias-file

Weekly Downloads

439

Version

2.0.1

License

GPL-2.0-only

Unpacked Size

30 kB

Total Files

12

Last publish

Collaborators

  • kirasiris