1.0.0 • Published 1 year ago

tsserver-lite v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

Tsserver wrapper

A lite wrapper around tsserver

Install

yarn add tsserver-lite

Example

For example, your project structure:

├── src
│  └── test.ts
└──── xxx
// src/test.ts
export const number = 123;
export const string = 'abc';

How to use:

// index.mjs
import path from 'node:path';
import fs from 'node:fs';
import { fileURLToPath } from 'node:url';

import { client } from 'tsserver-lite';

const updateTSFile = async (info) => {
  const fileInfo = Object.assign(
    {
      changedFiles: [],
      closedFiles: [],
      openFiles: [],
    },
    info,
  );

  await client.execute('updateOpen', fileInfo);
};

const __dirname = path.dirname(fileURLToPath(import.meta.url));

const filePath = path.resolve(__dirname, './test.ts');

const main = async () => {
  client.startService();

  const openFile = {
    file: filePath,
    fileContent: fs.readFileSync(filePath, 'utf-8'),
    projectRootPath: path.resolve(__dirname, '../'),
    scriptKindName: 'ts',
  };

  try {
    await updateTSFile({
      openFiles: [openFile]
    });

    const result = await client.execute(
      'quickinfo',
      {
        file: filePath,
        line: 1,
        offset: 15,
      },
    );
    if (result.type === 'response') {
      console.log('result---', result);
    }
  } catch (err) {
    console.log(`tsserver error: ${err.message}`);
  }

  client.closeService();
};

main().catch(err => {
  console.error(err);
  process.exit(1);
});

Try run script:

node index.mjs

You will see these logs:

result: {
  seq: 0,
  type: 'response',
  command: 'quickinfo',
  request_seq: 3,
  success: true,
  body: {
    kind: 'const',
    kindModifiers: 'export',
    start: { line: 1, offset: 14 },
    end: { line: 1, offset: 20 },
    displayString: 'const number: 123',
    documentation: '',
    tags: []
  }
}